Skip to content

Instantly share code, notes, and snippets.

@oliverbarreto
Created December 31, 2013 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save oliverbarreto/8194009 to your computer and use it in GitHub Desktop.
Save oliverbarreto/8194009 to your computer and use it in GitHub Desktop.
Show/Hide Hidden Files OSX
# Show hidden files in Finder
# OSX 10.9 Mavericks
defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder
OSX 10.7 - !0.8
defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder
# Hide hidden files in Finder
# OSX 10.9 Mavericks
defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder
# OSX 10.7 - !0.8
defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment