Skip to content

Instantly share code, notes, and snippets.

@Oversan
Created December 3, 2014 08:52
Show Gist options
  • Save Oversan/15287cc6415957a3c3f5 to your computer and use it in GitHub Desktop.
Save Oversan/15287cc6415957a3c3f5 to your computer and use it in GitHub Desktop.
Show/hide hidden files in Finder on OS X 10.10

Show hidden file

defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

Hide hidden file

defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment