diff options
Diffstat (limited to 'clean')
-rwxr-xr-x | clean | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ #! /bin/sh DIR=${1:-$HOME} -echo "find $DIR -name '*~' -exec rm '{}' \;" -find $DIR -name '*~' -exec rm '{}' \; +echo "find $DIR \( -name '*~' -o -name '__MACOSX' -o -name .DS_Store \) -exec rm -fr '{}' \;" +find $DIR \( -name '*~' -o -name '__MACOSX' -o -name .DS_Store \) -exec rm -fr '{}' \; |