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