什么是shell脚本。首先它是一个脚本,并不能作为正式的编程语言。因为是跑在linux的shell中,所以叫shell脚本。说白了,shell脚本就是一些命令的集合。举个例子,我想实现这样的操作:
1)进入到/tmp/目录;
2)列出当前目录中所有的文件名;
3)把所有当前的文件拷贝到/root/目录下;
4)删除当前目录下所有的文件。
简单的4步在shell窗口中需要你敲4次命令,按4次回车。这样是不是很麻烦?所以不妨把所有的操作都记录到一个文档中,然后去调用文档中的命令,这样一步操作就可以完成。其实这个文档呢就是shell脚本了,只是这个shell脚本有它特殊的格式。
Shell脚本能帮助我们很方便的去管理服务器,因为我们可以指定一个任务计划定时去执行某一个shell脚本实现我们想要需求。比如利用邮件的便利,我们可以在我们的linux服务器上部署监控的shell脚本,比如网卡流量有异常了或者服务器web服务器停止了就可以发一封邮件给管理员,同时发送给管理员一个报警短信这样可以让我们及时的知道服务器出问题了。
凡是自定义的脚本建议放到/usr/local/sbin/目录下,这样做的目的是,一来可以更好的管理文档;二来以后接管你的管理员都知道自定义脚本放在哪里,方便维护
shell脚本的基本结构以及如何执行
第一个shell脚本
[root@localhost ~]# cd /usr/local/sbin/ [root@localhost sbin]# vim first.sh #! /bin/bash ## This is my first shell script. ## 2017.09.02.
date
echo "hello world"
Shell脚本通常都是以.sh 为后缀名的,这个并不是说不带.sh这个脚本就不能执行,只是大家的一个习惯而已。
所以,以后你发现了.sh为后缀的文件那么它可能是一个shell脚本了。shell脚本中的第一行
shell脚本也可以执行,但是这不符合规范。
# 表示注释,后面跟一些该脚本的相关注释内容以及作者和创建日期或者版本等等。
当然这些注释并非必须的,但建议还是写上。。
因为随着工作时间的逐渐过渡,你写的shell脚本也会越来越多,
如果有一天你回头查看自己写过的某个脚本时,很有可能忘记该脚本是用来干什么的以及什么时候写的。
所以写上注释是有必要的。另外系统管理员并非只有你一个,
如果是其他管理员查看你的脚本,他看不懂岂不是很郁闷。下面该运行一下这个脚本了
[root@localhost sbin]# sh first.sh 2017年 09月 2日 星期六 18:58:02 CST Hello world!
其实shell脚本还有一种执行方法就是:
其实shell脚本还有一种执行方法就是:
[root@localhost sbin]# ./first.sh -bash: ./first.sh: 权限不够 [root@localhost sbin]# chmod +x first.sh [root@localhost sbin]# ./first.sh 2017年 09月 02日 星期六 18:58:51 CST Hello world!
要想使用该种方法运行shell脚本,前提是脚本本身有执行权限,
所以需要给脚本加一个 ‘x’ 权限。
另外使用sh命令去执行一个shell脚本的时候是可以加-x选项来查看这个脚本执行过程的,
这样有利于我们调试这个脚本哪里出了问题:
[root@localhost sbin]# sh -x first.sh + date 2017年 09月 02日 星期六 20:00:11 CST + echo 'Hello world!' Hello world!
命令 : date, 在shell中的用法
[root@localhost sbin]# date +"%Y-%m-%d %H:%M:%S" 2017-09-2 19:41:01
date在脚本中最常用的几个用法:
data +%Y
以四位数字格式打印年份
date +%y
以两位数字格式打印年份
date +%m
月份
date +%d
日期
date +%H
小时
date +%M
分钟
date +%S
秒
date +%w
星期,如果结果显示0 则表示周日
有时在脚本中会用到一天前的日期:
[root@localhost sbin]# date -d "-1 day" +%d 1
或者一小时前:
[root@localhost sbin]# date -d "-1 hour" +%H 18
甚至1分钟前:
[root@localhost sbin]# date -d "-1 min" +%M 50
shell脚本中的变量
如果你写了一个长达1000行的shell脚本,
并且脚本中出现了某一个命令或者路径几百次。
突然你觉得路径不对想换一下,那岂不是要更改几百次?
你固然可以使用批量替换的命令,但也是很麻烦,并且脚本显得臃肿了很多。
变量的作用就是用来解决这个问题的。
[root@localhost sbin]# cat variable.sh #! /bin/bash ## In this script we will use variables. ## Writen by Aming 2017-09-2.
d=`date +%H:%M:%S` echo "The script begin at $d." echo "Now we'll sleep 2 seconds." sleep 2 d1=`date +%H:%M:%S` echo "The script end at $d1."
‘d’ 和 ‘d1’ 在脚本中作为变量出现,定义变量的格式为 变量名=变量的值
当在脚本中引用变量时需要加上 ‘$’ 符号,下面看看脚本执行结果吧:
[root@localhost sbin]# sh variable.sh The script begin at 20:16:57. Now we'll sleep 2 seconds. The script end at 20:16:59.
下面我们用shell计算两个数的和:
[root@localhost sbin]# cat sum.sh #! /bin/bash ## For get the sum of tow numbers. ## 2017.09.02. a=1 b=2 sum=$[$a+$b] echo "$a+$b=$sum"
数学计算要用[ ]括起来并且外头要带一个 ‘$’ 脚本结果为:
[root@localhost sbin]# sh sum.sh 1+2=3
Shell脚本还可以和用户交互:
[root@localhost sbin]# cat read.sh #! /bin/bash ## Using 'read' in shell script. ## 2017.09.02. read -p "Please input a number: " x read -p "Please input another number: " y sum=$[$x+$y] echo "The sum of the two numbers is: $sum"
read 命令就是用在这样的地方,用于和用户交互,把用户输入的字符串作为变量值。脚本执行过程如下:
[root@localhost sbin]# sh read.sh Please input a number: 2 Please input another number: 10 The sum of the two numbers is: 12
有时候我们会用到这样的命令
/etc/init.d/iptables restart
前面的/etc/init.d/iptables文件其实就是一个shell脚本,为什么后面可以跟一个 “restart”?
这里就涉及到了shell脚本的预设变量。
实际上,shell脚本在执行的时候后边是可以跟参数的,而且还可以跟多个
root@localhost sbin]# cat option.sh #! /bin/bash echo "$1 $2 $0"
执行结果:
[root@localhost sbin]# sh option.sh 1 2 1 2 option.sh