mac显示和隐藏文件

封装了一下显示和隐藏的脚本,方便mac上的文件隐藏和显示

if [ `defaults read com.apple.finder AppleShowAllFiles` = "1" ];  then
defaults write com.apple.finder AppleShowAllFiles -bool false
else
defaults write com.apple.finder AppleShowAllFiles -bool true
fi
killall Finder

下载地址:显示和隐藏.app

posted @ 2015-03-13 11:58  Ethan_村长  阅读(171)  评论(0编辑  收藏  举报