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
Post new comment