Created
June 13, 2012 14:14
-
-
Save mariojunior/2924325 to your computer and use it in GitHub Desktop.
Showing / Hidding hidden Files on MacOSX
This file contains hidden or 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
#To show your hidden files on Finder, use this script: | |
#To Show: | |
defaults write com.apple.finder AppleShowAllFiles -bool true | |
killall -TERM Finder | |
#To Hide them: | |
defaults write com.apple.finder AppleShowAllFiles -bool false | |
killall -TERM Finder | |
#You may use in your Terminal or, better, use the Apple Automator to create an App of it. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment