1. shell script
shell script是针对shell写的脚本。
使用纯文本文件, 将一些shell的语法和命令写在里面,使用户能处理复杂的操作。
2. 编写shell script
先写 hello world。
#!/bin/bash
# desc : the first shell script
# author : yonggang
# date : 2014-01-01
echo -e "hello world. \n";
exit 0;
第一行“#!/bin/bash” ,声明文件内使用bash语法。当程序执行时,能够自动加载bash的相关环境配置文件。
# 表示注释
exit表示中断程序,并且返回 0 给系统.
3. shell script 执行
直接命令执行:
需要文件有rx权限。
当前目录下使用相对路径: ./hello.sh
或者使用绝对路径: /home/work/hello.sh
以bash命令执行:
sh hello.sh 或 bash hello.sh
这时只需要r权限。
/bin/sh 是系统内 /b