Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save KryptikOne/8342546 to your computer and use it in GitHub Desktop.

Select an option

Save KryptikOne/8342546 to your computer and use it in GitHub Desktop.
The two commands below will either show all files, (specifically hidden files), in finder on Mac OSX 10.9 or hide them depending on which you enter in terminal. By default Apple hides hidden files.
// This will show the hidden files
defaults write com.apple.finder AppleShowAllFiles 1 && killall Finder
// This will hide the hidden files
defaults write com.apple.finder AppleShowAllFiles 0 && killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment