变量測试语句-test

作用:用来測试变量是否相等,是否为空,文件类型等。

格式:

test 測试条件 或 [] #范围:整数,字符串。文件

1)整数測试:

test int1 -eq int2  測试整数是否相等

test int1 -ge int2  測试int1是否>=int2

test int1 -gt int2  測试int1是否>int2

test int1 -le  int2 測试int1是否<=int2

test int1 -lt int2  測试int1是否<int2

test int1 -ne int2  測试整数是否不相等

2)字符串測试:

test str1=str2  測试字符串是否相等

test str1!=str2  測试字符串是否不相等

test str1  測试字符串是否不为空

test -n str1  測试字符串是否不为空

test -z str1  測试字符串是否为空

3)文件測试:

test -d file  指定文件是否文件夹

test -f file  指定文件是否常规文件

test -x file  指定文件是否可运行

test -r file  指定文件是否可读

test -w file  指定文件是否可写

test -a file 指定文件是否存在

test -s file 文件的大小是否非0

注:test測试语句一般不单独使用,一般作为if语句的測试条件,如;

if test -d file
then
....
fi

test的变量的简写形式”[]”

演示样例-apachtest.sh

#!/bin/bash
# A test shell script for test Apache is running or not web=$(/usr/bin/pgrep httpd) echo "Now let's test the Apache..."
echo #if [ "$web" != "" ]
if [ -n "$web" ]
then
echo "Apache is running..."
else
echo "Apache is NOT running..."
/etc/rc.d/init.d/httpd start
fi

流程控制语句

流控制语句:用于控制shell程序的流程

exit语句:退出程序运行,并返回一个返回码,返回码为0表示正常退出,非0表示非正常退出。

比如:exit 0

一、if

if/then格式

if test -d $1
then
...
fi

演示样例-if_then.sh

#!/bin/bash
# A test shell script for if/then if [ -x /etc/rc.d/init.d/httpd ]
then
echo "Script: /etc/rc.d/init.d/httdp have x power!"
/etc/rc.d/init.d/httpd restart
fi

if/else格式

	if 条件1
then
命令1
elif 条件2
then
命令2
else
命令3
fi

多个条件的联合:

-a: 逻辑与,仅当两个条件都成立时,结果为真。

-o: 逻辑或,两个条件仅仅要有一个成立,结果为真。

演示样例-if_else.sh

#!/bin/bash
# A test shell script for if/elif/else echo -n "Please input a filename: "
read filename if [ -d $filename ]
then
echo "$filename is a directory"
elif [ -f $filename ]
then
echo "$filename is a commen file"
elif [ -c $filename -o -b $filename ]
then
echo "$filename is a device file"
else
echo "$filename is a unkown file"
fi

演示样例-if_elif_exit.sh

#!/bin/bash
# A test shell script for if/elif if [ $# -ne 2 ]
then
echo "Not enough parameters"
exit 1
fi if [ $1 -gt $2 ]
then
echo "$1 is great then $2"
elif [ $1 -lt $2 ]
then
echo "$1 is little then $2"
else
echo "$1 is equal as $2"
fi

二、for/in

for 变量 in 名字表
do
命令列表
done

演示样例-for.sh

#!/bin/bash
# A test shell script for "for" for DAY in Sunday Monday Tuesday Wednesday Thursday Friday Saturday
do
echo "The day is $DAY"
done

awk命令[分段提取]

awk -F域分隔符 ‘命令’[单引號] #假设不用-F指定切割符,默觉得空格

1、检測系统中UID为0的用户

awk -F: '$3==0 {print $1}' /etc/passwd

#awk -F: '{print $1}' /etc/passwd

-F: 指定切割附为:

$3 表示以:为切割附的第三位

2、检測系统中password为空的用户

awk -F: 'length($2)==0 {print $1}' /etc/shadow

#ps aux | grep -v root | awk '{print $2}'

演示样例-awk.sh

#!/bin/bash
# A test script for desplay users infomation /bin/echo -n "Please input a username: "
read username /bin/grep $username /etc/passwd > /dev/null 2> /dev/null if [ $? -eq 0 ]
then
/bin/echo "username is: $username"
else
/bin/echo "user: $username is not exits."
exit 1
fi
/bin/echo # list /etc/passwd info
userinfo=`/bin/grep ^$username:x /etc/passwd`
uid=`echo $userinfo | awk -F: '{print $3}'`
gid=`echo $userinfo | awk -F: '{print $4'}`
dir=`echo $userinfo | awk -F: '{print $6}'`
shell=`echo $userinfo | awk -F: '{print $7}'` # get /etc/group info
groupinfo=`/bin/grep x:$gid /etc/group`
gname=`/bin/echo $groupinfo | awk -F: '{print $1}'` /bin/echo "user id is: $uid"
/bin/echo "default group is: $gname"
/bin/echo "home directory is: $dir"
/bin/echo "shell is: $shell"
/bin/echo "group member info:" # get group members
groups=`/usr/bin/groups $username`
/bin/echo $groups
/bin/echo # get online info
online=`/usr/bin/who | grep $username`
if [ -z "$online" ]
then
echo "$username is not online"
else
echo "$username is online..."
fi

实例-killuser.sh

#思路:将一个用户全部的进程包含shell都关闭,则相当于将该用户踢出了系统
#!/bin/bash
# A shell sript to kill a user in Linux username=$1 killpid=`/bin/ps aux | grep $username | awk '{print $2}'` for PID in $killpid
do
/bin/kill -9 $PID 2> /dev/null
done

Shell编程入门(第二版)(中)的更多相关文章

  1. Shell编程入门(第二版)(下)

    ... ... command n done #select把关键字中的每一项做成类似表单,以交互的方式执行do和done之间的命令 示例-select.sh [python] view plainc ...

  2. Shell编程入门(第二版)(上)

    简单的示例Shell程序 示例1. #!/bin/bash #This is to show what a shell script looks like echo "Our first e ...

  3. Learning ROS for Robotics Programming - Second Edition(《ROS机器人编程学习-第二版》)

    Learning ROS for Robotics Programming - Second Edition <ROS机器人编程学习-第二版> ----Your one-stop guid ...

  4. centos shell编程6一些工作中实践脚本 nagios监控脚本 自定义zabbix脚本 mysql备份脚本 zabbix错误日志 直接送给bc做计算 gzip innobackupex/Xtrabackup 第四十节课

    centos   shell编程6一些工作中实践脚本   nagios监控脚本 自定义zabbix脚本 mysql备份脚本 zabbix错误日志  直接送给bc做计算  gzip  innobacku ...

  5. shell编程系列1--shell脚本中的变量替换

    shell编程系列1--shell脚本中的变量替换 变量替换总结: .${变量#匹配规则} # 从头开始匹配,最短删除 .${变量##匹配规则} # 从头开始匹配,最长删除(贪婪模式) .${变量%匹 ...

  6. Linux Shell编程入门

    从程序员的角度来看, Shell本身是一种用C语言编写的程序,从用户的角度来看,Shell是用户与Linux操作系统沟通的桥梁.用户既可以输入命令执行,又可以利用 Shell脚本编程,完成更加复杂的操 ...

  7. 转:Linux Shell编程入门

    http://www.cnblogs.com/suyang/archive/2008/05/18/1201990.html 从程序员的角度来看, Shell本身是一种用C语言编写的程序,从用户的角度来 ...

  8. COM编程入门第二部分——深入COM服务器

    本文为刚刚接触COM的程序员提供编程指南,解释COM服务器内幕以及如何用C++编写自己的接口.继上一篇COM编程入门之后,本文将讨论有关 COM服务器的内容,解释编写自己的COM接口和COM服务器所需 ...

  9. 转inux Shell编程入门

    http://www.cnblogs.com/suyang/archive/2008/05/18/1201990.html 从程序员的角度来看, Shell本身是一种用C语言编写的程序,从用户的角度来 ...

随机推荐

  1. Kail Linux渗透测试之测试工具Armitage

    Kali Linux下的Armitage是一个很强大的渗透工具,图形化操作页面,但我们把kali linux装在虚拟机里面,然后再启动armitage就会出现一个error,他会给你一个message ...

  2. 这是我在word 2010上发布的第一篇文章

    1.设置word 2010,添加cnblogs帐户 配置参考链接 其中URL地址为: http://rpc.cnblogs.com/metaweblog/fariver,在cnblogs配置的最下方可 ...

  3. SICP第三章题解

    目录 SICP第三章题解 ex3-17 ex3-18 ex3-19 队列 ex3-21 ex3-22 ex3-24 ex3-25 3.4 并发:时间是一个本质问题 ex3-38 3.4.2 控制并发的 ...

  4. QT编译发布程序后报错如缺少dll、“应用程序无法正常启动(0xc000007b)”的可能解决方法

    QT编译发布程序后报错如缺少dll.“应用程序无法正常启动(0xc000007b)”的可能解决方法 最近项目要用qt,因为初学没有经验,遇到些小问题常常没什么头绪,也查不到解决方法,刚刚还因为低端错误 ...

  5. 湖南大学ACM程序设计新生杯大赛(同步赛)B - Build

    题目描述 In country  A, some roads are to be built to connect the cities.However, due to limited funds, ...

  6. ZOJ 3954 Seven-Segment Display

    二分图匹配. 先检查每个数字$1$的个数是否满足条件,不满足直接就是无解.剩下的情况可以建立二分图,如果现在的某一列可以对应于原图的某一列,那么建边.如果二分图的最大匹配是$7$,则有解,否则误解. ...

  7. spring杂碎

    spring优点 方便解耦,简化开发 Spring就是一个大工厂,可以将所有对象创建和依赖关系维护,交给Spring管理 AOP编程的支持 Spring提供面向切面编程,可以方便的实现对程序进行权限拦 ...

  8. 深入理解正则表达式-----应用于检测csrf的正则表达式

    如何写检测和防御csrf的规则?我们可以利用正则表达式进行匹配.对POST包进行正则匹配,这里只是提供了一个思路. pcre:"/POST \/(?P<uri>.*?) HTTP ...

  9. cinder 挂载卷和 iSCSI原理

    LVM名称介绍 PV:物理磁盘 VG:卷组,多个PV可以组成一个VG,一个VG可以划分成多个LV(逻辑卷). PP:物理区块,将一个VG逻辑的划分成连续的小块. LP:逻辑区块,若干个PP组成一个LP ...

  10. 【BZOJ 2711】 2711: [Violet 2]After 17 (0-1 背包)

    2711: [Violet 2]After 17 Time Limit: 5 Sec  Memory Limit: 128 MBSubmit: 224  Solved: 153 Description ...