Posts Tagged with "shell"

Linux Bash Shell: recursively delete specific directories

Tuesday, August 11, 2009

0 Comments

I use this command to do a quick and clean delete from .svn directories and files: rm -rf `find . -type d -name .svn`

Continue reading...