/ Published in: Bash
-n prevents rm too many arguments error
-r prevents execution if none found (and prevents error!)
-r prevents execution if none found (and prevents error!)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -name ".svn" -print0 | xargs -0 -n 1024 -r rm -rf