Paul Kallstrom <[EMAIL PROTECTED]> writes: > Is there an easy way to recursively remove files with specific extensions? I > need to go through several ncpmounts and recursively remove all *.bak files. > Thanks!
I generally use something like: find . -name '*.bak' -print|xargs rm -f for tasks like this. Gary