Created
January 23, 2018 10:01
-
-
Save tjt263/a94021ed170f90f1e70340c285cae064 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 | |
} | |
switch="$(switch)" | |
if [[ "${switch}" = "TRUE" ]]; then | |
printf '%s\n' "Hiding files."; | |
defaults write com.apple.finder AppleShowAllFiles FALSE; | |
else | |
if [[ "${switch}" = "FALSE" ]]; then | |
printf '%s\n' "Showing files."; | |
defaults write com.apple.finder AppleShowAllFiles TRUE; | |
fi; | |
fi | |
killall Finder | |
sleep 0.1 | |
printf '%s\n' "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment