/ Published in: Bash
Removes all .png recursively within current working dir "0" are for fixing spaces add -p for prompt
Expand |
Embed | Plain Text
find . -name .png -print0 | xargs -0 -n 1 rm -fr
You need to login to post a comment.
Removes all .png recursively within current working dir "0" are for fixing spaces add -p for prompt
find . -name .png -print0 | xargs -0 -n 1 rm -fr
You need to login to post a comment.