編寫第乙個Shell指令碼

2022-01-11 08:54:32 字數 484 閱讀 4487

linux中有好多中不同的shell,bash是linux預設的shell,免費且容易使用。

su切換為root許可權

1.建立shell指令碼

touch hello.sh

vi hello.sh
內容

#! /bin/bash

#the first program

echo

"hello world

"

3.儲存並退出

按esc取消插入,輸入:wq儲存 

可以使用bash執行hello.sh

或4.賦予執行許可權

chmod 755 hello.sh
755/u+x

5.直接執行

./hello.sh
過程:

第乙個shell指令碼編寫

開啟shell環境 mac系統下,自帶的終端就是乙個標準的shell環境,筆者這裡沒有使用自帶的終端,而是自己安裝了iterm2,這也是乙個標準的shell環境。建立shell指令碼的路徑 mkdir p shell script建立shell指令碼1 shell指令碼的格式是.sh的檔案,使用vi...

編寫第乙個shell指令碼

1 新建目錄 mkdir test 2 進入目錄中,新建檔案 cd test touch test.sh 3 編寫內容 vi test.sh bin bash echo hello world 4 可執行許可權 chmod 755 test.sh對於指令碼檔案,有兩個常見的許可權設定 許可權為755...

第乙個Shell指令碼

開啟文字編輯器,新建乙個檔案,擴充套件名為sh sh代表shell 副檔名並不影響指令碼執行,見名知意就好,如果你用php寫shell 指令碼,副檔名就用php好了。輸入一些 bin bash echo hello world 是乙個約定的標記,它告訴系統這個指令碼需要什麼直譯器來執行,即使用哪一種...