Your ads will be inserted here by
Easy Plugin for AdSense.
Please go to the plugin admin page to
Paste your ad code OR
Suppress this ad slot.
# How to find .svn Directory if any exists
ls `find new -type d -name .svn`
# How to delete all .svn folders in Directory
rm -rf `find new -type d -name .svn`
# Find files named .svn and list.
# -exec with rm would remove in this case.
find . -name .svn -exec echo {} \