15 lines
525 B
Plaintext
15 lines
525 B
Plaintext
|
#!/bin/sh
|
||
|
if [ ${#*} = 1 ] ; then
|
||
|
if [ -d "$1" ] ; then
|
||
|
find $1 \
|
||
|
\( -name \*.o -o -name Makefile -o -name config.log -o -name config.status -o -name Makefile.html -o -name gem_make.out -o -name mkmf.log -o -name \*.bak -o -name .deps -o -name .libs -o -name CVS \) \
|
||
|
-print0 | xargs -r0 rm -rv || :
|
||
|
else
|
||
|
echo "'$1' does not exists or is not a directory! Exiting." >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
else
|
||
|
echo "Please pass exact one argument to this script! Exiting." >&2
|
||
|
exit 1
|
||
|
fi
|