Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Mac 不允许用户运行来自 Unidentified Developer 的文件来保存用户。但是现在,如果您知道它是由您的同事构建的,那么您可以运行它。
一种方法是允许应用程序从 Unidentified Developer 运行
或者,您可以通过单击允许每次运行它 - 当您从脚本运行它时无法完成!
Mac 设置扩展属性并禁止执行文件。你可以看到他们使用
ls -le <filename> -rw-r--r-x@ ... more details xattr -l <filename> com.apple.quarantine: <Some Values>
删除扩展属性
xattr -d com.apple.quarantine <filename>
授予执行权限!
chmod 744 <filename>