unable to execute xxx.sh : Operation not permitted 问题

Posted 明明如月学长

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unable to execute xxx.sh : Operation not permitted 问题相关的知识,希望对你有一定的参考价值。

一、背景

之前在本地创建了 shell 脚本,在 iterm 中 cd 到该目录,可以通过 ./xxx.sh 的方式去执行。

今天突然发现报了如下错误:

unable to execute xxx.sh : Operation not permitted

或者

-bash: ./xxx.sh: /usr/bin/env: bad interpreter: Operation not permitted

最近把系统升级为 Monterey 版本,怀疑和系统升级有关系。

二、分析思路

ls -l 查看权限

发现有执行权限

使用 ls -l@ 来查看附加属性

搜索里面的几个属性发现一些线索

苹果系统有一个GateKeeper保护机制(自 OSX 10.5 加入)。从互联网上下载来的文件,会被自动打上 com.apple.quarantine 标志,翻译过来就是免疫隔离,系统根据这个附加属性对这个文件作出限制。

三、解决办法

sudo xattr -r -d com.apple.quarantine +目录路径

输入系统密码即可。

设置完成后 执行 ./test.sh 发现可以正常执行

以上是关于unable to execute xxx.sh : Operation not permitted 问题的主要内容,如果未能解决你的问题,请参考以下文章

Wrapper: Error - Unable to execute Java command

Unable to execute dex: GC overhead limit exceeded

模拟器 Unable to execute simctl install Error 117

GenericJDBCException: Unable to open JDBC Connection for DDL execution ,切换pgsql报错?

init : Failed to spawn readahead-collector main process :unable to execute ...

sudo: unable to execute ./xxx.py: no such file or directory