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.
我已在 linux mint 15 中将文件夹的路径添加到 bashrc。其中包含我的脚本。据我所知,我的脚本应该像 bash 脚本一样工作。但是每次我尝试使用我的脚本之一时,都会出现以下错误:bash: /bin/myscript: permission denied
bash: /bin/myscript: permission denied
这是出口线:
export PATH=$PATH:/home/peter/myscripts/
我以 root 身份登录。
你可能忘记给你的脚本执行权限:
chmod a+x /path/to/the/script