Skip to content

Instantly share code, notes, and snippets.

@ddeveloperr
Last active December 28, 2017 10:20
Show Gist options
  • Select an option

  • Save ddeveloperr/5526e0725916e3ac7dba55cf974b92c6 to your computer and use it in GitHub Desktop.

Select an option

Save ddeveloperr/5526e0725916e3ac7dba55cf974b92c6 to your computer and use it in GitHub Desktop.
Show and hide files and folders on MAC OS X

Show and hide files and folders on MAC OS X

  1. Open Terminal found in Finder > Applications > Utilities
  2. In Terminal, paste the following:
defaults write com.apple.finder AppleShowAllFiles YES

Press return

  1. Hold the ‘Option/alt’ key, then right click on the Finder icon in the dock and click Relaunch.

This will show all hidden files. To hide them again, follow the same steps but replace the Terminal command with:

defaults write com.apple.finder AppleShowAllFiles NO

More details: https://ianlunn.co.uk/articles/quickly-showhide-hidden-files-mac-os-x-mavericks/

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