Skip to content

Instantly share code, notes, and snippets.

@A1iAshoor
Created September 11, 2019 23:21
Show Gist options
  • Save A1iAshoor/a102b43596a7718ebbeced14c638b0f4 to your computer and use it in GitHub Desktop.
Save A1iAshoor/a102b43596a7718ebbeced14c638b0f4 to your computer and use it in GitHub Desktop.
To show hidden files and folders in Finder, open a terminal window and type this:
defaults write com.apple.finder AppleShowAllFiles TRUE
(the above sentence is all in one line), press return, and then type:
killall Finder (and press return)
Finder will relaunch and you will be able to see hidden files and folders.
To revert (hide hidden items), type this in terminal:
defaults write com.apple.finder AppleShowAllFiles FALSE
(all in one line again), press return, and then this:
killall Finder (and press return)
That's it!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment