Return to Snippet

Revision: 42200
at March 1, 2011 06:09 by andrewroycarter


Initial Code
find . -name .png -print0 | xargs -0 -n 1 rm -fr

Initial URL


Initial Description
Removes all .png recursively within current working dir
"0" are for fixing spaces
add -p for prompt

Initial Title
Batch find & action

Initial Tags


Initial Language
Bash