MAC 隐藏文件的显示
显示 defaults write com.apple.finder AppleShowAllFiles -bool true
隐藏 defaults write com.apple.finder AppleShowAllFiles -bool false
-
当升级到OS X 10.9 Mavericks版本之后,这两条命令需要做一些修改,变成了如下命令:
defaults write com.apple.finder AppleShowAllFiles Yes && killall Finder //显示隐藏文件
defaults write com.apple.finder AppleShowAllFiles No && killall Finder //不显示隐藏文件