linux下shell脚本论文,Linux下Shell脚本编程

1、 shell脚本是什么

它是一种脚本语言,并非编程语言。

可以使用一些逻辑判断、循环等语法。

可以自定义子函数,是系统命令的集合。

shell脚本可以实现自动化运维,大大增加我们的工作效率。

2、shell脚本结构以及执行方法

开头行指定bash路径: #! /bin/bash

以#开头的行作为解释说明

#注释自己的脚本内容,方便自己查阅;utf8字符集,支持中文;

脚本的名字以.sh结尾,用于区分这是一个shell脚本

执行脚本方式有两种:

chmod a+x 1.sh    添加x执行权限;

./1.sh 可以直接执行,或者写绝对路径/root/shell/1.sh

如果没有执行权限可以 bash 1.sh    或 sh 1.sh

bash -x 1.sh 可以查看脚本执行过程

实验练习:

1234 [root@localhost shell]# cat 1.sh

#!/bin/bash

#这是我的第一个脚本

echo "hello world"

[root@localhost shell]# ls -l

-rw-r--r-- 1 root root 60 6月  16 19:28 1.sh

[root@localhost shell]# chmod a+x 1.sh

[root@localhost shell]# ls -l

-rwxr-xr-x 1 root root 60 6月  16 19:28 1.sh

[root@localhost shell]# ./1.sh

hello world

[root@localhost shell]# /root/shell/1.sh

hello world

[root@localhost shell]# /bin/sh 1.sh

hello world

[root@localhost shell]# bash -x 1.sh

+ echo 'hello world'

hello world

执行bash和sh是一样的,sh是bash的软连接文件;

[root@localhost ~]# ls -l /bin/bash

-rwxr-xr-x. 1 root root 871700 10月 16 2014 /bin/bash

[root@localhost ~]# ls -l /bin/sh

lrwxrwxrwx. 1 root root 4 3月  4 00:59 /bin/sh -> bash

3、学会date命令的用法

date  +%Y-%m-%d    date +%y-%m-%d 年月日

date  +%Y-%m-%d = date +%F 年月日

date  +%H:%M:%S = date +%T 时间

date +%s  时间戳

date -d @1434248742    根据时间戳算出当前时间

date -d "+1day" 一天后    date -d "-1day" 一天前

date -d  "-1month" 一月前

date -d  “-1min” 一分钟前

date +%w    date +%W 星期

实验练习:

[root@localhost shell]# date +%y

15

[root@localhost shell]# date +%Y

2015

[root@localhost shell]# date +%m

06

[root@localhost shell]# date +%d

16

[root@localhost shell]# date +%H

14

[root@localhost shell]# date +%M

01

[root@localhost shell]# date +%S

54

从1970年 01月01日0点0分开始算起到现在多少秒;

[root@localhost shell]# date +%s

1434434874

[root@localhost shell]# date -d @1434434874

2015年 06月 16日 星期二 14:07:54 CST

CST是中国时间 +8小时

[root@yonglinux shell]# date -d @0

1970年 01月 01日 星期四 08:00:00 CST

[root@localhost shell]# date +%F

2015-06-16

[root@localhost shell]# date +%T

14:04:17

[root@localhost shell]# date +%Y-%m-%d

2015-06-16

[root@localhost shell]# date +"%Y-%m-%d %H:%M:%S"

2015-06-16 14:05:13

[root@localhost shell]# date +"%F %T"

2015-06-16 14:05:38

周二

12 [root@localhost shell]# date +%w

2

今年的第多少周,24周

[root@localhost shell]# date +%W

24

全年有多少周,52周;

[root@localhost shell]# echo "365/7" | bc

52

[root@localhost shell]# date -d "-1 day"

2015年 06月 15日 星期一 14:16:31 CST

[root@localhost shell]# date -d "-1 day" +"%F %T"

2015-06-15 14:19:13

[root@localhost shell]# date -d "+1 day" +"%F %T"

2015-06-17 14:19:22

[root@localhost shell]# date -d "+1 month" +"%F %T"

2015-07-16 14:19:31

[root@localhost shell]# date -d "+1 year" +"%F %T"

2016-06-16 14:19:39

[root@localhost shell]# date -d "+1 week" +"%F %T"

2015-06-23 14:19:45

[root@localhost shell]# date -d "-10 hour" +"%F %T"

2015-06-16 04:19:59

[root@localhost shell]# date -d "-10 min" +"%F %T"

2015-06-16 14:10:15

[root@localhost shell]# date -d "-10 sec" +"%F %T"

2015-06-16 14:20:14

4、shell脚本中的变量

当脚本中使用某个字符串较频繁并且字符串长度很长时就应该使用变量代替。

使用条件语句时,常常使用变量    if [ $a -gt 1 ]; then ... ; fi

引用某个命令的结果时,用变量替代  n=`wc -l 1.txt`

写和用户交互的脚本时,变量也是必不可少的  read -p "Input a number: " n; echo $n

如果没写这个n,可以直接使用$REPLY

内置变量 $0, $1, $2,$#    $0表示脚本本身,$1 第一个参数,$2 第二个参数,$#表示参数的个数;

数学运算a=1;b=2; c=$(($a+$b))  或者 c=$[$a+$b]

实验练习:

引用某个命令的结果,使用变量代替

[root@localhost shell]# file=`which yum`

[root@localhost shell]# echo $file

/usr/bin/yum

[root@localhost shell]# rpm -qf $file

yum-3.2.29-60.el6.CentOS.noarch

变量只在当前shell下生效,子shell不会生效;

要想子shell也生效,使用export file 声明变量;

用户交互的变量:

[root@localhost shell]# cat 2.sh

#!/bin/bash

#与用户交互的变量

read -p "请输入一个数字:" num

echo $num

[root@localhost shell]# sh 2.sh

请输入一个数字:333

333

参数的变量:

[root@localhost shell]# cat 3.sh

#!/bin/bash

#关于参数的变量

echo "\$1=$1"

echo "\$2=$2"

echo "\$3=$3"

echo "\$#=$#"

echo "\$0=$0"

[root@localhost shell]# sh 3.sh ABC linux world

$1=ABC

$2=linux

$3=world

$#=3

$0=3.sh

数值变量:

12345678910 [root@localhost shell]# a=1;b=2

[root@localhost shell]# c=$a+$b

[root@localhost shell]# echo $c

1+2

[root@localhost shell]# c=$[$a+$b]

[root@localhost shell]# echo $c

3

[root@localhost shell]# c=$(($a+$b))

[root@localhost shell]# echo $c

3

5、shell中的逻辑判断

格式1:if 条件 ; then 语句; fi

格式2:if 条件; then 语句; else 语句; fi

格式3:if …; then … ;elif …; then …; else …; fi

逻辑判断表达式:if [ $a -gt $b ]; if [ $a -lt 5 ]; if [ $b -eq 10 ]等;注意到处都是空格。

可以使用 &&并且 || 或者 结合多个条件

大于>gt    (greater than)

小于< lt    (less than)

大于等于 >= ge

小于等于 <=  le

等于    ==eq    (equal)

不等于  != ne

实验练习:

[root@localhost shell]# cat if.sh

#!/bin/bash

#if判断语句,条件为真,打印true;

if :

then

echo true

fi

[root@localhost shell]# sh if.sh

true

if判断语句2;

[root@localhost shell]# cat if2.sh

#!/bin/bash

#if判断语句,条件为真,返回true;

if [ 1 == 1 ]

then

echo "true"

fi

[root@localhost shell]# sh -x if2.sh

+ '[' 1 == 1 ']'

+ echo true

true

[root@localhost shell]# sh if2.sh

true

if判断语句3;

[root@localhost shell]# cat if3.sh

#!/bin/bash

#if判断语句,条件为真返回true,条件为假,返回false;

if [ "1" == "2" ]

then

echo "true"

else

echo "false"

fi

[root@localhost shell]# sh if3.sh

false

变量,进行比较

[root@localhost shell]# cat if4.sh

#!/bin/bash

#if判断语句,变量进行比较;

a=1

if [ "$a" == "2" ]

then

echo "true"

else

echo "false"

fi

[root@localhost shell]# sh -x if4.sh

+ a=1

+ '[' 1 == 2 ']'

+ echo false

false

多个判断要加elif

[root@localhost shell]# cat if5.sh

#!/bin/bash

#if判断语句,多个判断使用elif;

a=1

if [ "$a" == "2" ]

then

echo "true"

elif [ "$a" -lt 10 ]

then

echo "no false"

else

echo "false"

fi

[root@localhost shell]# sh if5.sh

no false

[ $a -lt 3 ] 也可以这样代替 (($a<3));使用方括号请一定注意空格;

1234 [root@localhost shell]# a=1;if(($a<3)); then echo OK;fi

OK

[root@localhost shell]# a=1;if [ $a -lt 3 ]; then echo OK;fi

OK

&& 并且  前面的执行成功后才执行后面的;

|| 或者  前面的执行不成功执行后面的;

12345 [root@localhost shell]# a=5

[root@localhost shell]# if [ $a -lt 10 ]&&[ $a -gt 2 ];then echo OK;fi

OK

[root@localhost shell]# if [ $a -lt 10 ]||[ $a -gt 2 ];then echo OK;fi

OK

奇数偶数判断,输入的数字除以2,余数为0为偶数,非0为奇数;

[root@yonglinux shell]# cat 4.sh

#!/bin/bash

read -p "enter a number:" n

n1=$[$n%2]

if [ $n1 -eq 0 ]

then

echo "你输入的数字是偶数"

else

echo "你输入的数字是奇数"

fi

[root@yonglinux shell]# sh 4.sh

enter a number:23

你输入的数字是奇数

[root@yonglinux shell]# sh 4.sh

enter a number:90

你输入的数字是偶数

判断输入的是否是数字,不是数字的直接退出;数字的话判断奇数或偶数;

`echo $n|grep -c '[^0-9]'`    匹配输入的字符为非数字的行数,如果为1说明不是数字。

[root@localhost shell]# cat 5.sh

#!/bin/bash

#判断输入的是否是数字,不是数字的直接退出;数字的话判断是奇数或偶数;

read -p "请输入一个数字:" n

n2=`echo $n|grep -c '[^0-9]'`

if [ $n2 -eq 1 ]

then

echo "你输入的不是纯数字,请重新输入"

exit 1

fi

n1=$[$n%2]

if [ $n1 -eq 0 ]

then

echo "你输入的数字是偶数"

else

echo "你输入的数字是奇数"

fi

[root@localhost shell]# sh 5.sh

请输入一个数字:abc

你输入的不是纯数字,请重新输入

[root@localhost shell]# sh 5.sh

请输入一个数字:323

你输入的数字是奇数

6、if 判断文件、目录属性

[ -f file ]判断是否是普通文件,且存在

[ -d file ] 判断是否是目录,且存在

[ -e file ] 判断文件或目录是否存在

[ -r file ] 判断文件是否可读

[ -w file ] 判断文件是否可写

[ -x file ] 判断文件是否可执行

实验练习:

1.sh存在的话执行后面的

[root@localhost shell]# [ -f 1.sh ] && echo "1.sh exist"

1.sh exist

21.sh不存在执行后面的。

12 [root@localhost shell]# [ -f 21.sh ] || echo "1.sh not exist"

1.sh not exist

判断文件是否存在

[root@localhost shell]# cat test.sh

#!/bin/bash

#判断1.sh是否存在;

if [ -e 1.sh ]

then

echo "1.sh exist"

else

echo "1.sh not exist"

fi

[root@localhost shell]# sh test.sh

1.sh exist

exec的用法,结合date变量实验

exec命令用于调用并执行指令的命令。exec命令通常用在shell脚本程序中,可以调用其他的命令。如果在当前终端中使用命令,则当指定的命令执行完毕后会立即退出终端。

[root@localhost shell]# cat date.sh

#!/bin/bash

#exec的用法,结合date变量实验;

d=`date +%F`

exec >/tmp/$d.log 2>&1

echo "Begin at `date`"

ls /tmp/abc

cd /ddd

echo "End at `date`"

[root@localhost shell]# sh date.sh

[root@localhost shell]# cat /tmp/2015-06-16.log

Begin at 2015年 06月 16日 星期二 16:49:54 CST

ls: 无法访问/tmp/abc: 没有那个文件或目录

date.sh: line 7: cd: /ddd: 没有那个文件或目录

End at 2015年 06月 16日 星期二 16:49:54 CST

exec >/tmp/$d.log 2>&1  表示执行下面的行,输出正确或错误的信息都写到/tmp/目录下 日期.log里面;

0b1331709591d260c1c78e86d0c51c18.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值