On 6/1/05, William Astle <[EMAIL PROTECTED]> wrote:
> find $dir -type f -name \*~ -exec rm -f \{\} \;

alternatively:

rm -f $(find . -type f -name '*~')

if you were using zsh, you could run

rm -f **/*~

_______________________________________________
clug-talk mailing list
[email protected]
http://clug.ca/mailman/listinfo/clug-talk_clug.ca
Mailing List Guidelines (http://clug.ca/ml_guidelines.php)
**Please remove these lines when replying

Reply via email to