Skip to content

Instantly share code, notes, and snippets.

@hex2010
Created September 27, 2016 04:40
Show Gist options
  • Save hex2010/8260c95f6fbfcdaa6bacd359d7b436ee to your computer and use it in GitHub Desktop.
Save hex2010/8260c95f6fbfcdaa6bacd359d7b436ee to your computer and use it in GitHub Desktop.
Mac OSX toggle show hidden files in Finder
#!/bin/bash
showAll=`defaults read com.apple.finder AppleShowAllFiles`
if [[ "$showAll" = "NO" ]]; then
defaults write com.apple.finder AppleShowAllFiles YES
else
defaults write com.apple.finder AppleShowAllFiles NO
fi
killall Finder /System/Library/CoreServices/Finder.app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment