Skip to content

Instantly share code, notes, and snippets.

@fxbeckers
Last active December 16, 2015 07:39
Show Gist options
  • Save fxbeckers/5400545 to your computer and use it in GitHub Desktop.
Save fxbeckers/5400545 to your computer and use it in GitHub Desktop.
Hiding Files in OS X Finder

File Specific

Show

$ SetFile -a "v" www

Hide

$ SetFile -a "V" www

Finder Defaults

SHOW 'dot' files in Finder.app

$ defaults write com.apple.Finder AppleShowAllFiles YES $ killall Finder

HIDE 'dot' files in Finder.app

$ defaults write com.apple.Finder AppleShowAllFiles NO $ killall Finder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment