Linux Shell编程之脚本执行方式
Posted 皓月盈江
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Shell编程之脚本执行方式相关的知识,希望对你有一定的参考价值。
1.新建bash脚本文件
打开命令终端
touch hello.sh
vim hello.sh
2.编辑bash文件
#!/bin/bash
# this is a test programer
echo "hello word"
3.脚本执行
赋予执行权限,直接运行
chmod 755 hello.sh
./hello.sh
输出结果:
以上是关于Linux Shell编程之脚本执行方式的主要内容,如果未能解决你的问题,请参考以下文章