回覆列表
-
1 # 網上搬磚頭z
-
2 # 波波說運維
主要有兩種方法:
一、直接./加上檔名.sh,如執行hello.sh為./hello.sh【hello.sh必須有x許可權】
二、直接sh 加上檔名.sh,如執行hello.sh為sh hello.sh【hello.sh可以沒有x許可權】
方法一:絕對路徑執行.sh檔案
1、下面三種方法都可以,如下圖
複製內容到剪貼簿./home/test/shell/hello.sh /home/test/shell/hello.sh sh /home/test/shell/hello.sh方法二:當前目錄執行.sh檔案
1、cd到.sh檔案所在目錄
比如以hello.sh檔案為例,如下圖
2、給.sh檔案新增x執行許可權
比如以hello.sh檔案為例,chmod u+x hello.sh
3、./執行.sh檔案
比如以hello.sh檔案為例,./hello.sh 即可執行hello.sh檔案,如下圖
4、sh 執行.sh檔案
以hello.sh檔案為例,sh hello.sh即可執行hello.sh檔案,如下圖
注意事項:用“./”加檔名.sh執行時,必須給.sh檔案加x執行許可權
-
3 # 自然命理
第一種:./ hello.sh
第二種:source hello.sh
第三種:sh hello.sh
第四種:bash hello.sh
第五種:
sh hello2.sh
source hello2.sh
bash hello2.sh
. hello2.sh