ShowHidden/show_hidden.sh
manfromhuh 51fbf15428 Adding exes.
Adding all the files to run the application.
2020-07-31 11:20:53 -04:00

12 lines
315 B
Bash
Executable File

#show or hide hidden files in mac finder
show=$(defaults read com.apple.finder AppleShowAllFiles)
if [ "$show" == "TRUE" ]
then
defaults write com.apple.finder AppleShowAllFiles FALSE;killall Finder
else [ "$show" == "FALSE" ]
defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
fi
exit