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 {} ;