Skip to content

Instantly share code, notes, and snippets.

@Raefael
Last active December 16, 2015 11:38
Show Gist options
  • Save Raefael/5428299 to your computer and use it in GitHub Desktop.
Save Raefael/5428299 to your computer and use it in GitHub Desktop.
# hide file or folder
chflags -hidden "path to file or folder"
# show file or folder
chflags -nohidden "path to file or folder"
# show all hidden files or folders
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
# hide all hidden files or folders
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