Earlier quoted context omitted.
How about showing the actual filesystem? Instead of some restricted fictional view? For example, how the hell do you get to /tmp from the Finder? What's with the stupid column per directory level? This is an extremely bad use of display space. Haven't used Windows in a long time, and the equivalent in Linux is useless. (Or, more precisely, I don't use it.) But there are a number of irritations that have been there fo…
~/Library/Application Support Keeps getting hidden and you have to set a preference option via the command line to show it... only for it get hidden on the next OS update. Very frustrating!
showfiles=`defaults read com.apple.Finder AppleShowAllFiles` if [ "$showfiles" = "TRUE" ]; then defaults write com.apple.finder AppleShowAllFiles FALSE else defaults write com.apple.finder AppleShowAllFiles TRUE fi
In combination with the spotlight search it's really fast ;)
Edit: Formatting isn't that nice in the comments, here's a little gist which is pretty much the same. https://gist.github.com/rprieto/7349079