菜鸟笔记
提升您的技术认知

shell中的if语句-ag真人游戏

1、基本语法:

if [ command ]; then
     符合该条件执行的语句
fi

2、扩展语法:

if [ command ];then
     符合该条件执行的语句
elif [ command ];then
     符合该条件执行的语句
else
     符合该条件执行的语句
fi

3、语法说明:
      bash shell会按顺序执行if语句,如果command执行后且它的返回状态是0,则会执行符合该条件执行的语句,否则后面的命令不执行,跳到下一条命令。
当有多个嵌套时,只有第一个返回0退出状态的命令会导致符合该条件执行的语句部分被执行,如果所有的语句的执行状态都不为0,则执行else中语句。
返回状态:最后一个命令的退出状态,或者当没有条件是真的话为0。

注意:

1、[ ]表示条件测试。注意这里的空格很重要。要注意在'['后面和']'前面都必须要有空格
2、在shell中,then和fi是分开的语句。如果要在同一行里面输入,则需要用分号将他们隔开。
3、注意if判断中对于变量的处理,需要加引号,以免一些不必要的错误。没有加双引号会在一些含空格等的字符串变量判断的时候产生错误。比如[ -n "$var" ]如果var为空会出错
4、判断是不支持浮点值的
5、如果只单独使用>或者<号,系统会认为是输出或者输入重定向,虽然结果显示正确,但是其实是错误的,因此要对这些符号进行转意
6、在默认中,运行if语句中的命令所产生的错误信息仍然出现在脚本的输出结果中
7、使用-z或者-n来检查长度的时候,没有定义的变量也为0
8、空变量和没有初始化的变量可能会对shell脚本测试产生灾难性的影响,因此在不确定变量的内容的时候,在测试号前使用-n或者-z测试一下
9、? 变量包含了之前执行命令的退出状态(最近完成的前台进程)(可以用于检测退出状态)

常用参数:
文件/目录判断:

常用的:
[ -a file ] 如果 file 存在则为真。
[ -d file ] 如果 file 存在且是一个目录则返回为真。
[ -e file ] 如果 指定的文件或目录存在时返回为真。
[ -f file ] 如果 file 存在且是一个普通文件则返回为真。
[ -r file ] 如果 file 存在且是可读的则返回为真。
[ -w file ] 如果 file 存在且是可写的则返回为真。(一个目录为了它的内容被访问必然是可执行的)
[ -x file ] 如果 file 存在且是可执行的则返回为真。
不常用的:
[ -b file ] 如果 file 存在且是一个块文件则返回为真。
[ -c file ] 如果 file 存在且是一个字符文件则返回为真。
[ -g file ] 如果 file 存在且设置了sgid则返回为真。
[ -h file ] 如果 file 存在且是一个符号符号链接文件则返回为真。(该选项在一些老系统上无效)
[ -k file ] 如果 file 存在且已经设置了冒险位则返回为真。
[ -p file ] 如果 file 存并且是命令管道时返回为真。
[ -s file ] 如果 file 存在且大小非0时为真则返回为真。
[ -u file ] 如果 file 存在且设置了suid位时返回为真。
[ -o file ] 如果 file 存在且属有效用户id则返回为真。
[ -g file ] 如果 file 存在且默认组为当前组则返回为真。(只检查系统默认组)
[ -l file ] 如果 file 存在且是一个符号连接则返回为真。
[ -n file ] 如果 file 存在 and has been mod如果ied since it was last read则返回为真。
[ -s file ] 如果 file 存在且是一个套接字则返回为真。
[ file1 -nt file2 ] 如果 file1 比 file2 新, 或者 file1 存在但是 file2 不存在则返回为真。
[ file1 -ot file2 ] 如果 file1 比 file2 老, 或者 file2 存在但是 file1 不存在则返回为真。
[ file1 -ef file2 ] 如果 file1 和 file2 指向相同的设备和节点号则返回为真。

字符串判断

[ -z string ] 如果string的长度为零则返回为真,即空是真
[ -n string ] 如果string的长度非零则返回为真,即非空是真
[ string1 ]  如果字符串不为空则返回为真,与-n类似
[ string1 == string2 ] 如果两个字符串相同则返回为真
[ string1 != string2 ] 如果字符串不相同则返回为真
[ string1 < string2 ] 如果 “string1”字典排序在“string2”前面则返回为真。
[ string1 > string2 ] 如果 “string1”字典排序在“string2”后面则返回为真。

数值判断

[ int1 -eq int2 ] int1和int2两数相等返回为真 ,=
[ int1 -ne int2 ] int1和int2两数不等返回为真 ,<>
[ int1 -gt int2 ] int1大于int2返回为真 ,>
[ int1 -ge int2 ] int1大于等于int2返回为真,>=
[ int1 -lt int2 ] int1小于int2返回为真 ,<
[ int1 -le int2 ] int1小于等于int2返回为真,<=

逻辑判断

[ ! expr ] 逻辑非,如果 expr 是false则返回为真。
[ expr1 -a expr2 ] 逻辑与,如果 expr1 and expr2 全真则返回为真。
[ expr1 -o expr2 ] 逻辑或,如果 expr1 或者 expr2 为真则返回为真。
[ ] || [ ] 用or来合并两个条件
[ ] && [ ] 用and来合并两个条件

 其他判断

[ -t fd ] 如果文件描述符 fd (默认值为1)打开且指向一个终端则返回为真
[ -o optionname ] 如果shell选项optionname开启则返回为真

 if高级特性:
双圆括号(( )):表示数学表达式
在判断命令中只允许在比较中进行简单的算术操作,而双圆括号提供更多的数学符号,而且在双圆括号里面的'>','<'号不需要转意。

双方括号[[ ]]:表示高级字符串处理函数
双方括号中判断命令使用标准的字符串比较,还可以使用匹配模式,从而定义与字符串相匹配的正则表达式。

双括号的作用:
在shell中,[ $a != 1 || $b = 2 ]是不允许出,要用[ $a != 1 ] || [ $b = 2 ],而双括号就可以解决这个问题的,[[ $a != 1 || $b = 2 ]]。又比如这个[ "$a" -lt "$b" ],也可以改成双括号的形式(("$a"
 < "$b"))

实例
1:判断目录$doiido是否存在,若不存在,则新建一个

if [ ! -d "$doiido"]; then
  mkdir "$doiido"
fi

2:判断普通文件$doiido是否存,若不存在,则新建一个

if [ ! -f "$doiido" ]; then
  touch "$doiido"
fi

3:判断$doiido是否存在并且是否具有可执行权限

if [ ! -x "$doiido"]; then
  mkdir "$doiido"
chmod  x "$doiido"
fi

4:是判断变量$doiido是否有值

if [ ! -n "$doiido" ]; then
  echo "$doiido is empty"
  exit 0
fi

5:两个变量判断是否相等

if [ "$var1" = "$var2" ]; then
  echo '$var1 eq $var2'
else
  echo '$var1 not eq $var2'
fi

6:测试退出状态:

if [ $? -eq 0 ];then
    echo 'that is ok'
fi

7:数值的比较:

if [ "$num" -gt "150" ];then
   echo "$num is biger than 150"
fi

8:a>b且a

(( a > b )) && (( a < c ))
[[ $a > $b ]] && [[ $a < $c ]]
[ $a -gt $b -a $a -lt $c ]

9:a>b或a

(( a > b )) || (( a < c ))
[[ $a > $b ]] || [[ $a < $c ]]
[ $a -gt $b -o $a -lt $c ]

10:检测执行脚本的用户

if [ "$(whoami)" != 'root' ]; then
   echo  "you  have no permission to run $0 as non-root user."
   exit  1;
fi

上面的语句也可以使用以下的精简语句
[ "$(whoami)" != 'root' ] && ( echo "you have no permission to run $0 as non-root user."; exit 1 )

11:正则表达式

doiido="hero"
if  [[ "$doiido" == h* ]];then
    echo "hello,hero"
fi

============其他例子============
1、查看当前操作系统类型

#!/bin/sh
system=`uname  -s`
if [ $system = "linux" ] ; then
   echo "linux"
elif
    [ $system = "freebsd" ] ; then
   echo "freebsd"
elif
    [ $system = "solaris" ] ; then
    echo "solaris"
else
    echo  "what?"
fi

2、if利用read传参判断

#!/bin/bash
read -p "please  input a score:"  score
echo  -e "your  score [$score] is judging by sys now"
if [ "$score" -ge "0" ]&&[ "$score" -lt "60" ];then
    echo  "sorry,you  are lost!"
elif [ "$score" -ge "60" ]&&[ "$score" -lt "85" ];then
    echo "just  soso!"
elif [ "$score" -le "100" ]&&[ "$score" -ge "85" ];then
     echo "good  job!"
else
     echo "input  score is wrong , the range is [0-100]!"
fi

3、判断文件是否存在

#!/bin/sh
today=`date  -d yesterday  %y%m%d`
file="apache_$today.tar.gz"
cd  /home/chenshuo/shell
if [ -f "$file" ];then
    echo “”ok"
else
    echo "error  $file" >error.log
    mail  -s "fail  backup from test" [email protected] 

4、这个脚本在每个星期天由cron来执行。如果星期的数是偶数,他就提醒你把垃圾箱清理:

#!/bin/bash
weekoffset=$[ $(date  "%v") % 2 ]
if [ $weekoffset -eq "0" ]; then
   echo "sunday evening, put out the garbage cans." | mail -s "garbage cans out"  your@your_domain.org
fi

5、挂载硬盘脚本(windows下的ntfs格式硬盘)

#! /bin/sh
dir_d=/media/disk_d
dir_e=/media/disk_e
dir_f=/media/disk_f
a=`ls $dir_d | wc -l`
b=`ls $dir_e | wc -l`
c=`ls $dir_f | wc -l`
echo "checking disk_d..."
if [ $a -eq 0 ]; then
    echo "disk_d  is not exsit,now creating..."
    sudo  mount -t ntfs /dev/disk/by-label/software /media/disk_d
else
    echo "disk_d exits"
fi
echo  "checking  disk_e..."
if [ $b -eq 0 ]; then 
    echo "disk_e is not exsit,now creating..."
    sudo mount -t ntfs /dev/disk/by-label/elitor /media/disk_e
else
    echo  "disk_e exits"
fi
echo  "checking  disk_f..."
if [ $c -eq 0 ]; then
    echo  "disk_f  is not exsit,now creating..."
    sudo mount -t ntfs /dev/disk/by-label/work /media/disk_f
else
    echo "disk_f  exits"
fi

 

 

网站地图