Deleting multiple files with one command

I’ve encountered many times the need to remove multiple files where the “rm” command didn’t work.

For example when you have a temporal directory with “to many files” the remove command (rm) does NOT work

I fixed it with this one:

find . -name “.._.fstemp*” -exec rm -rf {} ;

One thought on “Deleting multiple files with one command

Leave a Reply

Your email address will not be published. Required fields are marked *