运行某个程序时,bash 说权限不足的问题 在Linux下,你自己编写的脚本需要执行的时候,需要加上执行权限: chmod +x ./你的程序 或把所有权限都加上: chmod +777 ./你的程序 再运行即可。