Skip to content

Instantly share code, notes, and snippets.

@gcch
Created October 22, 2016 15:08
Show Gist options
  • Save gcch/f0f76bd31402dc6607b26038f2460846 to your computer and use it in GitHub Desktop.
Save gcch/f0f76bd31402dc6607b26038f2460846 to your computer and use it in GitHub Desktop.
#!/bin/bash
# -------------------------------------------------- #
# Visible/Invisible switcher for OS X
# Copyright (C) 2014 tag. All rights reserved.
# -------------------------------------------------- #
status=`defaults read com.apple.finder AppleShowAllFiles`
if ${status}; then
defaults write com.apple.finder AppleShowAllFiles FALSE
else
defaults write com.apple.finder AppleShowAllFiles TRUE
fi
killall Finder
killall Terminal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment