Skip to content

Instantly share code, notes, and snippets.

@woffleloffle
Created February 22, 2018 17:52
Show Gist options
  • Save woffleloffle/a7b313fad2cac360709125410d51d611 to your computer and use it in GitHub Desktop.
Save woffleloffle/a7b313fad2cac360709125410d51d611 to your computer and use it in GitHub Desktop.
Your RC alias to show and hide hidden folders in OS X
# Hidden Folders in Finder
alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"
alias hide="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment