Shell脚本
Shell脚本:
Shell脚本,按Shell的语法写出来的脚本,是Linux自带的脚本语言
相当于Windows下的DOS批处理脚本
1.编辑一个文本文件,保存为hello.sh
# !/bin/sh
echo "hello,world"
shell脚本文件编写格式:
2.添加可执行权限
chmod +x hello.sh
3.执行程序,必须加上路径
./hello.sh
执行方式一:
执行方式二
2.要点与细节:
2.1. 第一行必须声明解释器
#!/bin/sh
2.2.必须有x权限,才可以执行,
比如:一个程序只有自己执行,别人不能执行
rwxr--r--
2.3.执行程序时,必须添加路径
./hello.sh 相对路径/绝对路径