Skip to content
Snippets Groups Projects
strip_symbols.sh 97 B
Newer Older
#!/bin/bash
strip --strip-unneeded `find $1 -name "*" -type f` >& /dev/null
echo "* strip $1 ok"