Skip to content

Instantly share code, notes, and snippets.

@mariojunior
Created June 13, 2012 14:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariojunior/2924325 to your computer and use it in GitHub Desktop.
Save mariojunior/2924325 to your computer and use it in GitHub Desktop.
Showing / Hidding hidden Files on MacOSX
#To show your hidden files on Finder, use this script:
#To Show:
defaults write com.apple.finder AppleShowAllFiles -bool true
killall -TERM Finder
#To Hide them:
defaults write com.apple.finder AppleShowAllFiles -bool false
killall -TERM Finder
#You may use in your Terminal or, better, use the Apple Automator to create an App of it.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment