Skip to content

Instantly share code, notes, and snippets.

@gimesi
Last active December 22, 2015 22:39
Show Gist options
  • Save gimesi/6541231 to your computer and use it in GitHub Desktop.
Save gimesi/6541231 to your computer and use it in GitHub Desktop.
Show and hide hidden files on a Mac.
I. "PERMANENT SOLUTION"
To show hidden files, open Terminal and enter:
defaults write com.apple.Finder AppleShowAllFiles TRUE [enter]
killall Finder
To hide 'em again, type:
defaults write com.apple.Finder AppleShowAllFiles FALSE [enter]
killall Finder [enter]
II. "DIALOGUE SOLUTION"
While having an open dialogue box, hit the CMD+SHIFT+"." keys simultaneously.
This enables to toggle the visibility. Quite handy when editing .htaccess :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment