Skip to content

Instantly share code, notes, and snippets.

@milon
Last active March 2, 2020 15:04
Show Gist options
  • Select an option

  • Save milon/7aaa10c3d5afd5a0b0a9 to your computer and use it in GitHub Desktop.

Select an option

Save milon/7aaa10c3d5afd5a0b0a9 to your computer and use it in GitHub Desktop.
Show hidden files on Mac OS X

Mac Show/Hide Files

Add these two lines to your .bashrc or .zshrc file.

alias show-files="defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app"

alias hide-files="defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment