/ Published in: Bash
find files using "find" and piping the output to rm using xargs; 1st argument to find is the search directory (command substituted in this example by pwd)
Expand |
Embed | Plain Text
find `pwd` -name "<pattern>" | xargs rm
You need to login to post a comment.
