Disable new Toolbar Features (e.g. tabs on top)
defaults write com.apple.Safari DebugSafari4IncludeToolbarRedesign -bool NO
Disable iPhone-Style Progress-Bar
defaults write com.apple.Safari DebugSafari4LoadProgressStyle -bool NO
via: fscklog.com
http://mbff.hausswolff.de/TEST_map.php
was man damals alles so gemacht hat
find all .svn folders:
find . -type d -name .svn
./.svn
./sourceA/.svn
./sourceB/.svn
./sourceB/module/.svn
./sourceC/.svn
delete all .svn folders:
rm -rf `find . -type d -name .svn`
via: http://www.anyexample.com/linux_bsd/bash/recursively_delete__svn_directories.xml