Here's something you can do in Ubuntu at the command line if you need to delete all those pesky .svn folders
find . -name .svn -type d -exec rm -rf {} \;
Here "." looks at the current directory. Change the directory to one of your choice.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment