Linux中Shell脚本的执行方式
程序员文章站
2024-02-19 15:05:28
...
第一个shell脚本
① 新建一个.sh文件
我们首先用vi新建一个hello.sh文件,并对他进行编辑:
[[email protected]_PC shelllearning]$ vi hello.sh
② 编辑代码
然后我们打上一段代码:
#!/bin/bash
# the first program
# author: veeja.liu
echo -e "A: Liuweijia is a good boy."
echo -e "B: I think so."
③ 脚本执行
- 赋予执行权限,直接运行。
[[email protected]_PC shelllearning]$ chmod 755 hello.sh [[email protected]_PC shelllearning]$ ./hello.sh A: Liuweijia is a good boy. B: I think so.
- 通过bash调用执行脚本。
[[email protected]_PC shelllearning]$ bash hello.sh A: Liuweijia is a good boy. B: I think so.
上一篇: #php学习笔记#--基本语法