bash: ./test.sh: 权限不够

[root@sakura xiangpeng]# ./test.sh
bash: ./test.sh: 权限不够
[root@sakura xiangpeng]# chmod 777 ./test.sh
[root@sakura xiangpeng]# ./test.sh
hello world

或者使用

chmod +x ./test.sh

猜你喜欢

转载自blog.csdn.net/DDKii/article/details/88527097