Linux中常见的脚本执行方式

1 赋予执行权限,直接运行

 chmod 755 hello.sh

 ./hello.sh (这里是路径加文件名,可以是绝对路径也可以是相对路径)

2 通过Bash调用执行脚本

 bash hello.sh