Skip to content

Instantly share code, notes, and snippets.

@atneik
Created December 16, 2013 14:18
Show Gist options
  • Save atneik/7987601 to your computer and use it in GitHub Desktop.
Save atneik/7987601 to your computer and use it in GitHub Desktop.
Toggle Hidden Files service for Automator
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