Here are some useful commands that can be run from your Ubuntu Linux command line:
This first one is to delete any subversion folders in a directory and any subdirectory. By changing the “.svn” portion, you can delete any filename recursively, such as the “_notes” folders left over from dreamweaver.
sudo rm -rf `find . -type d -name .svn`
sudo rm -rf `find . -type d -name _notes`
This one deletes files all .xml files recursively, starting in your current base folder.
find . -type f -name "*.xml" -delete
Make sure you are in the correct directory before you use one of these!
Edit: Here is another useful command, it deletes all empty folders under your CWD.
find . -empty -type d -delete
About jakimfett
I have been working with computers for over a decade. I was a computer lab administrator for a number of years, I am familiar with Microsoft and Unix based operating systems, and have worked as a Geek Squad Agent. In addition, I have been designing and administrating websites for the last half a dozen years. I started out programming straight HTML, but for the last year and a half have been studying PHP and SQL in the pursuit of my Information Systems degree. My programming environment of choice is PHP code combined with a MySQL backend, formatted using CSS. I also posses a solid working knowledge of Wordpress and have developed a number of custom plugins, themes, and widgets for that framework.