Return to Snippet

Revision: 19247
at October 19, 2009 19:06 by traeregan


Initial Code
find . -name ".svn" -print0 | xargs -0 -n 1024 -r rm -rf

Initial URL
http://www.commandlinefu.com/commands/view/902/delete-all-.svn-directories-from-current-path-recursive

Initial Description
-n prevents rm too many arguments error
-r prevents execution if none found (and prevents error!)

Initial Title
Delete all ".svn" directories from current path (recursive)

Initial Tags


Initial Language
Bash