Clean .svn directorys
Got a site full of .svn directories that you don't want.........
[code]
find . -type d -name ‘.svn’ -print0 | xargs -0 rm -rdf
[/code]
from
http://devnulled.com/content/2005/10/unix-command-to-remove-subversion-s...
Setting up Apache/PHP5 on os x leopard
Found this straight forward tutorial on getting apache/php5 running on the mac
Show hidden files in finder on OS X
Quick one.....
I love the way OS X handles it's file system, but sometimes you might need to see what it considers to be a system files (such as website file .htaccess). Here's a quick way to do that from the terminal:
$ defaults write com.apple.finder AppleShowAllFiles TRUE
$ killall Finder
and to switch it back:
$ defaults write com.apple.finder AppleShowAllFiles FALSE
$ killall Finder