shell脚本的使用---if条件判断

shell脚本的测试与判断

1、测试

语法:

[ 操作符 条件 ] == test 操作符 条件

1)测试文件级目录

文件的类型:

f,文件

ls -l ##只查看字段的第一个字符,文件“-”

d,目录

ls -ld

l,链接文件

ls -l

c,字符 设备

ls -l /dev/tty

b,块设备

ls -l /dev/sda1

s,套接字文件,一般服务使用mysql

ls -l /tmp/mysql.socket

p,管道

mkfifo hehe ##创建管道文件

ls -l hehe

测试的操作符:-f文件,-d目录,-e是否存在,-r是否可读,-w是否可写,-x是否可执行

案列:

[ -d /tmp]

echo $?   ##返回值为0代表/tmp是个目录

2)整数的比较

操作符:

-eq等于,-ne不等于,-gt大于,-lt,小于,ge大于等于,le小于等于

案列:

[ 10 -gt 11 ]

[ $? -eq 0 ] ##上一条命令是否执行成功

3)字符串比较

字符串:指一种数据类型,可以理解为纯文本类型

操作符:==是否相等, !=不相等,-z是否为空

案列:

STR1=hehe

[ $STR1 == hehe ]

[ $LANG == en ]

[ $STR1 != linuxfan.cn ]

STR2=   ##直接回车

[ -z $STR2 ]

[ -z $"/root/a" ]  ##这个文件是否为空

4)逻辑判断

逻辑判断即与或非

语法:

[ 表达式1 ] &&(与),||(或),!(非)[表达式2]

案列:

编译安装

./configure &&make &&make

[ 1 –ge 2 ] || [ 1 –lt 2 ] ##测试结果为真

[ $LANG != en ]

2、if判断

1)单分支

语法:

if [ 条件 ];then

命令

fi

案列:判断lftp是否安装若没安装则安装

vi install_lftp.sh

#!/bin/bash

rpm -qa |grep lftp 1>/dev/null

if [ $? -ne 0 ];then   ##若上调命令执性不成功说明没有安装lftp,则安装

yum -y install lftp &>/dev/null &&echo “lftp installed.”

fi

:wq

2)if双分支

语法:

if [ 条件 ];then

命令

else

命令1

fi

使用单分支案列脚本改写,如果已经安装放回已经安装,未安装则安装

3)if的多分支

语法:

if [ 条件1 ];then

命令1

elif [ 条件2 ];then

命令2

...

else [ 条件3 ];then

命令

fi

案列:

vi s60.sh

#!/bin/bash

ls /etc/rc.d/rc3.d/S60vsftpd

if [ $? -ne 0 ]

then

chkconfig vsftpd on

elif [ -x /etc/init.d/vsftpd ]

then

chmod +x /etc/init.d/vsftpd

else

/etc/init.d/vsftpd restart

fi

:wq

综合案列

vi if_then_fi.sh

#!/bin/bash

name=$(basename $0)

if [ $# -ne 2 -a $# -ne 3 ];then

echo "Usage:$name vaule1 value2"

echo "$name value1 value2 vaule3"

exit 1

fi

if [ $# -eq 2 ];then

echo "two args:$1,$2"

else

echo "three args:$1,$2,$3"

fi

if [ $# -eq 2 ];then

if [ $1 -gt $2 ];then

echo "$1 > $2"

elif [ $1 -lt $2 ];then

echo "$1 < $2"

else

echo "$1 = $2"

fi

else

if [ $1 -ge $2 -a $1 -ge $3 ];then

echo "$1 >=$2,$1 >=$3"

elif [ $1 -ge $2 -a $1 -le $3 ];then

echo "$1 >=$2,$1 <= $3"

elif [ $1 -lt $2 -a $1 -ge $3 ];then

echo "$1 < $2,$1 >= $3"

else

echo "$1 < $2,$1 < $3"

fi

fi

exit 0

:wq

时间: 2024-11-16 01:21:06

shell脚本的使用---if条件判断的相关文章

Linux下的shell脚本编程-变量-算术表达式-判断语句-if分支语句

Linux下的shell脚本编程-变量-算术表达式-判断语句-if分支语句 一:实验环境 1):虚拟机 2):linux系统 二:实验目标 1): shell 基本语法 2):变量 3):表达式 4):判断语句 5): if表达式 三:实验脚本 第一块 一个简单的shell脚本程序 [[email protected] ~]# mkdir test [[email protected] test]# vim example1.sh #!/bin/bash #This is to show wha

shell脚本中用到的条件和循环语句

本博文介绍一下shell脚本中常用的条件和循环语句: 条件语句: 循环语句: 示例: if语句: eg1. eg2. 2.case语句: 简单的case语句: 配合循环的case语句: 3.for语句: 简单的for语句:eg1. eg2. 和case搭配的for语句:eg3. 4.while语句: eg1. eg2. 5.util语句: 6.select语句:

shell编程(四)--- 条件判断之if判断

单分支if语句 if 判断条件;then     statement1     statement2 fi 双分支if语句 if 判断条件;then     statement1     statement2     -- else     statement3     statement4     -- fi 多分支if语句 if 判断条件1;then     statement1     statement2     -- elif 判断条件2;then     statement3    

shell编程(五)--- 条件判断之算术运算

方法1:let 算术运算表达式 示例1: [[email protected] Scripts]# A=2 [[email protected] Scripts]# B=3 [[email protected] Scripts]# let C=$A*$B [[email protected] Scripts]# echo $C 6 [[email protected] Scripts]# 方法2:$[算术运算表达式] 示例2: [[email protected] Scripts]# echo 

bash 脚本编程之二 条件判断

bash中如何实现条件判断 条件判断类型: 整数判断(双目判断): -eq:等于 .equal,测试两个整数之间是否相等,比如$A -eq $B -gt:大于.greater than -lt:小于.lesser than -ne:不等于.no  equal 这里也可以用另外一种写法,比如[ 2 -ne 3 ]可以写作[ ! 2 -eq 3 ] -le:小于或等于.lesser or equal -ge:大于等于.greater or equal ... 字符判断: 文件判断:单目判断 -e:e

Linux Shell角本中的条件判断

1.条件判断: if 使用: if condition; then commands; fi if else 使用: if condition; then commands; else if condition; then commands; else commands; fi 说明: if和else语句可以进行嵌套.if的条件判断部分可能会变得很长, 但可以用逻辑运算符将它变得简洁一些: ? [ condition ] && action; # 如果condition为真,则执行acti

shell脚本逻辑判断,文件目录属性判断,if,case用法

shell脚本中的逻辑判断 1.if then fi [[email protected] shell]# cat if1.sh #!/bin/bash a=5 if [ $a -gt 3 ] then echo ok fi 2.if then else fi: [email protected] shell]# sh -x if2.sh + a=1 + '[' 1 -gt 3 ']' + echo nook nook [[email protected] shell]# cat if2.sh

第五课-第三讲05_03_bash脚本编程之二 条件判断

变量名称:只能保含字母数字下划线,且不能数字开头.不能和系统中已存在的环境变量重名.见名知意bash中如何实现条件判断?条件测试类型:整数测试:测试某值是否是我们需要的值,如$a=3字符测试:某个变量中的字符串是否是我们需要的值文件测试:判断文件是否存在条件测试的表达式:[ express ]-----两侧都有空格,必须有否则语法错误[[ express ]]---2个中括号,2个中括号是bash的关键字test express----test命令如何写一个表达式:整数比较,双目操作-eq 测试

shell脚本----if(数字条件,字符串条件,字符串为空)

二元比较操作符,比较变量或者比较数字. 注意数字与字符串的区别. 1.整数比较  [cpp] view plain copy print? -eq 等于,如:if [ "$a" -eq "$b" ] -ne 不等于,如:if [ "$a" -ne "$b" ] -gt 大于,如:if [ "$a" -gt "$b" ] -ge 大于等于,如:if [ "$a" -ge