Precisa ver arquivos ocultos em um Mac? Não se preocupe:
#!/bin/bash
current_status=$(defaults read com.apple.finder AppleShowAllFiles)
if
[ $current_status == "YES" ]
then
defaults write com.apple.finder AppleShowAllFiles NO
else
defaults write com.apple.finder AppleShowAllFiles YES
fi
killall Finder # kill finder triggers restart