Skip to content

Instantly share code, notes, and snippets.

@marvell
Forked from oliverbarreto/showHiddenFiles
Created February 6, 2014 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marvell/8852129 to your computer and use it in GitHub Desktop.
Save marvell/8852129 to your computer and use it in GitHub Desktop.
# 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