Batch find & action


/ Published in: Bash
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. find . -name .png -print0 | xargs -0 -n 1 rm -fr

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.