DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Show/hide Hidden Files In Mac OS X
To show hidden system files and folders in Finder on Mac OS X, launch Terminal and type:
defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder
If you want to hide the default hidden systems file and folders, replace TRUE with FALSE.
Source: <a href="http://www.mactricksandtips.com/2008/04/show-hidden-files.html">http://www.mactricksandtips.com/2008/04/show-hidden-files.html</a>





