Skip to content

Instantly share code, notes, and snippets.

@tjt263
Created January 23, 2018 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjt263/2284a726ef97b12f555506d40dc632d8 to your computer and use it in GitHub Desktop.
Save tjt263/2284a726ef97b12f555506d40dc632d8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
switch ()
{
defaults read com.apple.finder AppleShowAllFiles
}
switch="$(switch)"
if [[ "${switch}" = "TRUE" ]]; then
defaults write com.apple.finder AppleShowAllFiles FALSE
elif [[ "${switch}" = "FALSE" ]]; then
defaults write com.apple.finder AppleShowAllFiles TRUE
fi
switch
killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment