4 lines
144 B
Text
4 lines
144 B
Text
|
#!/bin/sh
|
||
|
#find . \( -name '*~' -o -name '.*~' \) -exec ls -l {} \; -exec rm {} \;
|
||
|
find . \( -name '*~' -o -name '.*~' \) -print | xargs -t rm
|