我正在尝试安装 cydia 源代码。
$ git clone git://git.saurik.com/cydia.git
$ cd cydia
但是当我输入“./sysroot.sh”时,我收到了这个错误:
-bash: ./sysroot.sh: /usr/bin/env: bad interpreter: Operation not permitted
什么问题?
最佳答案
我的猜测是您尝试从中运行脚本的文件系统是使用“noexec”选项挂载的。 shebang 中的解释器不需要在 $PATH 中,因为指定了绝对路径。尝试通过调用解释器而不是脚本来运行脚本:
bash sysroot.sh
关于macos - ./sysroot.sh : Operation not permitted,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9501063/