Show/Hide Hidden Files in Mac OS X

August 28, 2010

From the Terminal use the commands below.

Show

$ defaults write com.apple.finder AppleShowAllFiles TRUE

$ killall Finder

Hide

$ defaults write com.apple.finder AppleShowAllFiles FALSE

$ killall Finder

@drydevelopment