sh可执行脚本命令

一、创建.sh文件

1
vi hello.sh

二、编写脚本内容

1
2
#!/bin/bash
echo "Hello World!"

三、添加执行权限

1
2
3
chmod +x hello.sh
或者
chmod 755 hello.sh

四、执行脚本

1
./hello.sh