Hello World

在命令提示符下:

$ echo "Hello World"

輸出:

Hello World

要建立指令碼,請使用以下內容建立文字文件:

#!/bin/sh
echo "Hello World"

使用名稱 hello.sh(或任何檔名)儲存指令碼,並通過提供以下許可權使指令碼可執行:

$ chmod 755 hello.sh

要麼:

$ chmod +x hello.sh

執行指令碼:

$ ./hello.sh

輸出:

Hello World

要執行沒有可執行許可權的本地 shell 指令碼:

1.bash

$ bash hello.sh
Hello World

2.ksh

$ ksh hello.sh
Hello World

3.sh

$ sh hello.sh
Hello World