Skip to content

Instantly share code, notes, and snippets.

@anaxamaxan
Created January 27, 2017 21:35
Show Gist options
  • Save anaxamaxan/4f1d14446945a66e9da500c726a92b01 to your computer and use it in GitHub Desktop.
Save anaxamaxan/4f1d14446945a66e9da500c726a92b01 to your computer and use it in GitHub Desktop.
Show/Hide hidden files in Finder
# Add this to your ~/.bash_profile (or .bash_aliases if you have one)
alias showHidden="defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app"
alias hideHidden="defaults write com.apple.finder AppleShowAllFiles NO; 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