shell脚本中的逻辑判断文件目录属性判断if特殊用法case判断
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本中的逻辑判断文件目录属性判断if特殊用法case判断相关的知识,希望对你有一定的参考价值。
一、shell脚本中的逻辑判断
语法
1、格式1
if 条件 ; then 语句; fi
例:如果a大于3,打印OK
[[email protected] ~]# vi 2.sh
[[email protected] ~]# bash -v 2.sh
#!/bin/bash
a=5
if [ $a -gt 3 ]
then
echo ok
fi
ok
[[email protected] ~]# bash 2.sh
ok
[[email protected] ~]#
2、格式2
if 条件; then 语句; else 语句; fi
例:如果a小于3,则打印no ok
[[email protected] ~]# bash -v 3.sh
#!/bin/bash
a=2
if [ $a -gt 3 ]
then
echo ok
else
echo no ok
fi
no ok
[[email protected] ~]# bash 3.sh
no ok
[[email protected] ~]#
3、格式3
if …; then … ;elif …; then …; else …; fi
例:
[[email protected] ~]# sh -x 4.sh
+ a=3
+ ‘[‘ 3 -gt 4 ‘]‘
+ ‘[‘ 3 -lt 6 ‘]‘
+ echo ‘<6 && >1‘
<6 && >1
[[email protected] ~]# sh -v 4.sh
#!/bin/bash
a=3
if [ $a -gt 4 ]
then
echo ">1"
elif [ $a -lt 6 ]
then
echo "<6 && >1"
else
echo no ok
fi
<6 && >1
[[email protected] ~]#
逻辑判断表达式
if [ $a -gt $b ]; if [ $a -lt 5 ]; if [ $b -eq 10 ]等
-gt (>); 大于
-lt(<); 小于
-ge(>=); 大于等于
-le(<=);小于等于
-eq(==)等于
; -ne(!=)
注意到处都是空格
可以使用 && || 结合多个条件
if [ $a -gt 5 ] && [ $a -lt 10 ]; then
if [ $b -gt 5 ] || [ $b -lt 3 ]; then
二、 文件目录属性判断
1、if 判断文件、目录属性
[ -f file ]判断是否是普通文件,且存在
例:如果riven文件不存在,就创建
#!/bin/bash
c="/tmp/riven"
if [ -f $c ]
then
echo $c exist
else
touch $c
fi
[ -d file ] 判断是否是目录,且存在
#!/bin/bash
c="/tmp/2018"
if [ -d $c ]
then
echo $c exist
else
touch $c
fi
[ -e file ] 判断文件或目录是否存在
#!/bin/bash
c="/tmp/2018"
if [ -e $c ]
then
echo $c exist
else
touch $c
fi
[ -r file ] 判断文件是否可读
#!/bin/bash
c="/tmp/2018"
if [ -r $c ]
then
echo $c readable
else
touch $c
fi
[ -w file ] 判断文件是否可写
#!/bin/bash
c="/tmp/2018"
if [ -w $c ]
then
echo $c writeable
else
touch $c
fi
[ -x file ] 判断文件是否可执行
#!/bin/bash
c="/tmp/2018"
if [ -x $c ]
then
echo $c exeable
else
touch $c
fi
因为文件不可执行,所有没有任何输出。
2、脚本缩写
#!/bin/bash
c="/tmp/2018"
[ -f $f ] && rm -f $f
#上面的命令等同于下面的命令
if [-f $f ]
then
rm -f $f
fi
#!/bin/bash
c="/tmp/2018"
[ -f $f ] || touch $f #如果这个文件不存在就执行后面的文件
#上面的命令等同于下面的命令
if [ !-f $f ] #叹号表示取反
then
touch $f
fi
三、 if特殊用法
1、if [ -z "$a" ]??这个表示当变量a的值为空时会出现错误
#!/bin/bash
if [ ! -f /tmp/a1 ]
then
echo "/tmp/a1 not exist."
exit
n=`wc -l /tmp/a1`
if [ -z "$n" ]
then
echo error
exit
else
if [ $n -gt 100 ]
then
echo ok
fi
if [ -n "$a" ] 表示当变量a的值不为空
[[email protected] ~]# if [ -n 2.sh ]; then echo ok; fi
ok
[[email protected] ~]# if [ -n "$a" ]; then echo ok; else echo "a is null";fi
ok
[[email protected] ~]# if [ -n "$aa" ]; then echo ok; else echo "a is null";fi
a is null
[[email protected] ~]# if [ -n "$aa" ]; then echo ok; else echo "aa is null";fi
aa is null
[[email protected] ~]#
if grep -q ‘123‘ 1.txt; then??表示如果1.txt中含有‘123‘的行时会怎么样?
[[email protected] ~]# grep -w ‘root‘ /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[[email protected] ~]# if grep -w ‘root‘ /etc/passwd; then echo "root exist"; fi
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
root exist
[[email protected] ~]# if grep -wq ‘root‘ /etc/passwd; then echo "root exist"; fi #-q不显示过滤内容
root exist
[[email protected] ~]# if ! grep -w ‘user1‘ /etc/passwd;then useradd user1;fi # !取反
if [ ! -e file ]; then 表示文件不存在时会怎么样
if (($a<1)); then …等同于 if [ $a -lt 1 ]; then…
[ ] 中不能使用<,>,==,!=,>=,<=这样的符号
四、case判断
1?shell中的case判断
格式:
case??量名 in
value1)
command
;;
value2)
command
;;
*)
commond
;;
esac
在case程序中,可以在条件中使用|,表示或的意思比如
2|3)
command
;;
2、脚本案例
#!/bin/bash
read -p "Please input a number: " n #read命令让用户输入字符串,n表示要捕获的变量。
if [ -z "$n" ]
then
echo "Please input a number."
exit 1
fi
n1=`echo $n|sed ‘s/[0-9]//g‘` #
if [ -n "$n1" ]
then
echo "Please input a number."
exit 1
fi
if [ $n -lt 60 ] && [ $n -ge 0 ]
then
tag=1
elif [ $n -ge 60 ] && [ $n -lt 80 ]
then
tag=2
elif [ $n -ge 80 ] && [ $n -lt 90 ]
then
tag=3
elif [ $n -ge 90 ] && [ $n -le 100 ]
then
tag=4
else
tag=0
fi
case $tag in
1)
echo "not ok"
;;
2)
echo "ok"
;;
3)
echo "ook"
;;
4)
echo "oook"
;;
*)
echo "The number range is 0-100."
;;
esac
以上是关于shell脚本中的逻辑判断文件目录属性判断if特殊用法case判断的主要内容,如果未能解决你的问题,请参考以下文章
六十八shell脚本中的逻辑判断文件目录属性判断if特殊用法case判断
shell脚本中的逻辑判断 文件目录属性判断 if特殊用法 case判断
shell脚本中的逻辑判断,文件目录属性判断,if特殊用法,case语句
20.5 shell脚本中的逻辑判断 20.6 文件目录属性判断 20.7 if特殊用法 20.8/