OSX上的打开下载文件警告提示太烦人了,尤其是当你解开一个从网上下载回来的程序包的,比如wordpress,每点开一次文件都要点一次确认。google一番总算找到了方法,记录如下:
10.5的系统,因为xattr命令不支持递归操作,所以只能用find搭配-exec参数来做了
find ~/Downloads/ -type f -exec xattr -d com.apple.quarantine {} \;
对于10.6(snow leopard): 直接用-r参数即可
xattr -d -r com.apple.quarantine ~/Downloads
以上两条是针对~/Download目录进行的,也可以通过直接关闭系统配置,停用这一功能。但是据说在10.7(mountain lion)中无效⋯⋯
defaults write com.apple.LaunchServices LSQuarantine -bool NO
后悔的时候可以改回来
defaults write com.apple.LaunchServices LSQuarantine -bool YES
暂无评论