91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux執行shell腳本的四種方式

發布時間:2020-04-11 10:54:55 來源:億速云 閱讀:259 作者:小新 欄目:建站服務器

這篇文章主要為大家詳細介紹了linux執行shell腳本的四種方式,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下。

linux執行shell腳本的四種方式

Linux中shell腳本的執行通常有4種方式,分別為工作目錄執行,絕對路徑執行,sh執行,shell環境執行。

首先,看下我們的腳本內容

[tan@tan scripts]$ ll
total 4
-rw-rw-r--. 1 tan tan 68 May 8 23:18 test.sh
[tan@tan scripts]$ cat test.sh 
#!/usr/bin/bash
 
/usr/bin/python <<-EOF
print "Hello Shell"
    EOF

1、工作目錄執行

工作目錄執行,指的是執行腳本時,先進入到腳本所在的目錄(此時,稱為工作目錄),然后使用 ./腳本方式執行

[tan@tan scripts]$ ./test.sh
-bash: ./test.sh: Permission denied
[tan@tan scripts]$ chmod 764 test.sh
[tan@tan scripts]$ ./test.sh
Hello Shell

報了權限錯誤,這里需要賦權,使用chmod 764 test.sh 賦權后就可以正常執行了。

2、絕對路徑執行

絕對路徑中執行,指的是直接從根目錄/到腳本目錄的絕對路徑

[tan@tan scripts]$ pwd
/home/tan/scripts
[tan@tan scripts]$ `pwd`/test.sh 
Hello Shell
[tan@tan scripts]$ /home/tan/scripts/test.sh 
Hello Shell

3、sh執行

sh執行,指的是用腳本對應的sh或bash來接著腳本執行

[tan@tan scripts]$ sh test.sh 
Hello Shell
[tan@tan scripts]$ bash test.sh 
Hello Shell

4、shell環境執行

shell環境執行,指的是在當前的shell環境中執行,可以使用 . 接腳本 或 source 接腳本

[tan@tan scripts]$ . test.sh 
Hello Shell
[tan@tan scripts]$ source test.sh 
Hello Shell

以上就是linux執行shell腳本的四種方式的詳細內容了,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎來億速云行業資訊!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

灵宝市| 大埔县| 吉水县| 梅河口市| 长沙市| 怀仁县| 隆林| 河东区| 聂荣县| 噶尔县| 漳州市| 原平市| 宣威市| 鲜城| 郴州市| 藁城市| 洱源县| 依安县| 全州县| 福海县| 东乌珠穆沁旗| 嘉峪关市| 莎车县| 长沙县| 惠安县| 东平县| 黄梅县| 来凤县| 中牟县| 如东县| 铁力市| 花莲市| 定日县| 许昌县| 土默特左旗| 汾阳市| 罗定市| 铜陵市| 蒙自县| 天台县| 宕昌县|