Skip to content

Instantly share code, notes, and snippets.

@tjt263
Created January 23, 2018 10:02
#!/usr/bin/env bash
switch="$(defaults read com.apple.finder AppleShowAllFiles)"
if [[ "${switch}" = "TRUE" ]]; then
defaults write com.apple.finder AppleShowAllFiles FALSE
elif [[ "${switch}" = "FALSE" ]]; then
defaults write com.apple.finder AppleShowAllFiles TRUE
fi
killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment