Created
January 27, 2017 21:35
-
-
Save anaxamaxan/4f1d14446945a66e9da500c726a92b01 to your computer and use it in GitHub Desktop.
Show/Hide hidden files in Finder
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
# 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