码迷,mamicode.com
首页 > 系统相关 > 详细

LINUX SHELL条件判断

时间:2016-05-24 13:26:18      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

算术运算的条件判断
[] [[]]:
-eq
-ne
-lt
-le
-gt
-ge

(( )):
>
<
>=
<=
=

[root@monitor ~]# if (( 2 == 3));then echo ‘123‘; fi
[root@monitor ~]# if (( 2 >= 3));then echo ‘123‘; fi
[root@monitor ~]# if (( 2 <= 3));then echo ‘123‘; fi
123
[root@monitor ~]# if (( 2 < 3));then echo ‘123‘; fi
123
[root@monitor ~]# if (( 2 > 3));then echo ‘123‘; fi



字符串的条件判断

-z
-n
=
==
!=
<
>

文件属性的条件判断

-f
-d
-c
-w
-L
-x
-e
-b
-r



#!/bin/bash
if [ -e demo.sh ];then
echo "文件存在"
fi

fpath="/etc/passwd"

if [ -e $fpath ];then
echo file exists;
else
echo file no exists;
fi


[ -e "/etc/hosts" ] || (echo ‘/etc/hosts not exist";exit 1)

if [ "$?" -eq 1 ];then
exit
fi

echo "/etc/hosts 文件存在"


declare -i a
a=20
if [ $a -eq 20 ];then
echo "var a 20"
fi


if [ $a -gt 10 ];then
echo ‘var >10‘;
fi


if [ "$LOGNAME" != "ROOT" ];then
echo "root "
fi


if [ "Bill" >"Apple" ];then
echo " BILL >APPLE"
fi

str="Bill"
if [ -n $str];then
echo "234"
fi

 

#!/bin/bash
NUM1=100
NUM2=200
if (($NUM1 > $NUM2));then
echo "ok"
else
echo "ok1"
fi

 

#!/bin/bash
Dir=/tmp/20140909
if [ ! -d $Dir ];then
mkdir -p $Dir
echo -e "\033[32mthis $Dir exist\033[0m"
else
echo -e "\033[32mthis $Dir is exist,please exit.\033[0m"

fi


#!/bin/bash
FILES=/tmp/test.txt
if [ -f $FILES ];then
echo "ok">>$FILES
else
cat $FILES
fi

 

-a: 逻辑表达式 -a 逻辑表达式
-o: 逻辑表达式 -o 逻辑表达式

 

LINUX SHELL条件判断

标签:

原文地址:http://www.cnblogs.com/zengkefu/p/5522976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!