Toggling hidden files on Finder

Toggling hidden files on Finder

Open automator, choose “run shell script” under “utilities” then use the following code. Save it. STATUS=`defaults read com.apple.finder AppleShowAllFiles` if [ $STATUS == YES ]; then defaults write com.apple.finder AppleShowAllFiles NO else defaults write com.apple.finder AppleShowAllFiles YES fi killall Finder You can assign a short…

Continue reading →