編碼的世界 / 優質文選 / 感情

Centos bash: 運行 ./xxx.sh: 權限不夠


2022年7月16日
-   

前言
    背景:執行.sh的可執行文件,出現錯誤:bash: ./xxx.sh: 權限不夠
解決方法
[root@idomyway]# ./xxx.sh
bash: ./xxx.sh: 權限不夠
[root@idomyway]# chmod 777 ./xxx.sh
[root@idomyway]# ./xxx.sh

或者使用
chmod +x ./xxx.sh

熱門文章