Last active
December 22, 2015 22:39
-
-
Save gimesi/6541231 to your computer and use it in GitHub Desktop.
Show and hide hidden files on a Mac.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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