mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
12 lines
316 B
Bash
Executable File
12 lines
316 B
Bash
Executable File
#!/bin/sh
|
|
DIR=$1
|
|
if [ -z "$DIR" ]; then
|
|
echo "[strip-nix] directory not specified, using current working directory"
|
|
DIR=`pwd`
|
|
fi
|
|
echo "[strip-nix] using directory: ${DIR}/bin/"
|
|
strip "$DIR/bin/*" 2> /dev/null
|
|
strip "$DIR/bin/lib/*" 2> /dev/null
|
|
strip "$DIR/bin/plugin/*" 2> /dev/null
|
|
echo "[strip-nix] finished"
|