运行Shell的两种方法:
#!/bin/bash echo "HelloWorld"
#!是标记,系统就知道使用什么解释器来实行,bash是常用的shell
chmod +x ./test.sh #赋予脚本执行权限
./test.sh #执行脚本