Last active
December 21, 2015 12:59
-
-
Save DomiR/6309810 to your computer and use it in GitHub Desktop.
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
showfiles=`defaults read com.apple.Finder AppleShowAllFiles` | |
if [ "$showfiles" = "TRUE" ]; then | |
say Hidden items disabled | |
defaults write com.apple.finder AppleShowAllFiles FALSE | |
else | |
say Hidden items enabled | |
defaults write com.apple.finder AppleShowAllFiles TRUE | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment