[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: recursive file deletion



Paul Kallstrom <paul@softracamerica.com> 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


Reply to: