1、使用vi或vim编辑文件test.sh,内容如下:
#!/bin/bash
echo "Hello World!"
2、使test.sh文件具有可执行权限
chmod +x test.sh
3、执行test.sh文件
方法1:./test.sh
方法2:/bin/sh test.sh
1、使用vi或vim编辑文件test.sh,内容如下:
#!/bin/bash
echo "Hello World!"
2、使test.sh文件具有可执行权限
chmod +x test.sh
3、执行test.sh文件
方法1:./test.sh
方法2:/bin/sh test.sh