Created
May 10, 2019 13:21
-
-
Save kevinkarwaski/084279894cdb60de21038b0559f1a115 to your computer and use it in GitHub Desktop.
Control dot/hidden file visibility in OSX from the command line
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
# Show dot/hidden files in the OXS Finder | |
defaults write com.apple.finder AppleShowAllFiles TRUE | |
killall Finder | |
# Hide dot/hidden files in the OXS Finder | |
defaults write com.apple.finder AppleShowAllFiles False | |
killall Finder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment