Skip to content

Instantly share code, notes, and snippets.

@supasympa
Created July 5, 2014 13:46
Show Gist options
  • Save supasympa/5a033f9653450e5602bf to your computer and use it in GitHub Desktop.
Save supasympa/5a033f9653450e5602bf to your computer and use it in GitHub Desktop.
enable disabled hidden files in finder ...
Run the following command to show hidden files:
defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
Run the following command to hide hidden files:
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