/ Published in: Bash
Beyond a certain number of files, the 'rm' command throws an 'Argument list too long" error. This is the solution. Use cautiously.
Expand |
Embed | Plain Text
find . -name 'FILE*' | xargs rm
You need to login to post a comment.
