赞
踩
在 macOS 系统终端执行 sh 程序脚本时,抛出异常 zsh: permission denied
用户没有权限,所以才出现了这个错误,所以只需要用 chmod 修改一下权限就可以了
给文件权限,可执行以下命令
chmod u+x *.sh
chmod 是权限管理命令
change the permissions mode of a file
的缩写。
u 代表所有者,x 代表执行权限,+ 表示增加权限。
chmod u+x file.sh
就表示对当前目录下的file.sh
文件的所有者增加可执行权限。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。