Created
December 11, 2014 16:40
-
-
Save aubreypwd/3997ab447f65db49a029 to your computer and use it in GitHub Desktop.
Shell Script for turning On/Off Hidden files in Finder
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
STATUS=`defaults read com.apple.finder AppleShowAllFiles` | |
if [ $STATUS == TRUE ]; then | |
defaults write com.apple.finder AppleShowAllFiles FALSE | |
else | |
defaults write com.apple.finder AppleShowAllFiles TRUE | |
fi | |
killall Finder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More info @ http://aubreypwd.com/add-show-hide-hidden-files-menu-os-x/