Created
January 23, 2018 10:02
-
-
Save tjt263/3f9f3eb0d47450a2b75928986eb46c39 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
switch="$(defaults read com.apple.finder AppleShowAllFiles)" | |
if [[ "${switch}" = "TRUE" ]]; then | |
defaults write com.apple.finder AppleShowAllFiles FALSE | |
elif [[ "${switch}" = "FALSE" ]]; then | |
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