Sunday, April 25, 2010

Delete .svn Recursively - When copying projects

Did you copy a eclipse project, and need to delete all the .svn directories. When svn cleanup ./directory/path doesn't work.

Use in Terminal:
sudo rm -rf `find . -type d -name .svn`

FYI:
pwd # see what directory your in
ls -la # see all the files including the hidden

No comments:

Trying out the Dart Analysis Server

I wanted to see how the Dart Analysis Server was put together and worked. I started looking to see how I could wire it up and try out the co...