练习的小内容:
判断当前文件夹下是否存在a.txt文件,若存在则新建a-1.txt文件;否则创建t.txt文件;
if 的三种条件表达式
1、
if 条件一;then
command1
else
command2
fi
code:
1 #!/bin/bash
2
3 if ls|grep a.txt; then
4 touch a-1.txt
5 else
6 touch t.txt
7 fi
Loong:/home/yee/if# ls
if-1.sh if-2.sh
Loong:/home/yee/if# sh -x if-1.sh
+ ls
+ grep a.txt
+ touch t.txt
Loong:/home/yee/if# ls
if-1.sh if-2.sh t.txt
Loong:/home/yee/if# touch a.txt
Loong:/home/yee/if# ls
a.txt if-1.sh if-2.sh t.txt
Loong:/home/yee/if# sh -x if-1.sh
+ ls
+ grep a.txt
a.txt
+ touch a-1.txt
Loong:/home/yee/if#
2、
if [表达式];then if与【】间要留空格,否则报错;
command1
fi 分号 ;不能少,否则报错:syntax error: unexpected end of file ;不要分号则then 换行写;
更复杂的情况,则可以使用这个语法:
if [ 条件判断式一 ]; then
当条件判断式一成立时,可以进行的指令工作内容;
elif [ 条件判断式二 ]; then
当条件判断式二成立时,可以进行的指令工作内容;
else
当条件判断式一与二均不成立时,可以进行的指令工作内容;
fi
文件表达式
条件表达式
if [ -f
if [ -d...
if [ -s file
if [ -r file ] 如果文件存在且可读
if [ -x file
if [ -e dir||file] 如果指定的文件或者目录存在返回真
[ -z STRING ] 如果STRING的长度为零则为真
[ -n STRING ] 如果STRING的长度非零则为真
[ STRING1 = STRING2 ] 如果两个字符串相同则为真
[ STRING1 != STRING2 ] 如果字符串不相同则为真
整数变量表达式
if [ int1 -eq int2]
if [ int1 -ge int2]
if [ int1 -gt int2]
if [ int1 -le int2]
if [ int1 -lt int2]
字符串变量表达式
If
if
if
if
if
if [ ! 表达式 ]
if [ ! -d $num] 如果不存在目录$num
if [ 表达式1
if [ 表达式1
-
表达式与前面的= != -d –f –x -ne -eq -lt等合用
-
逻辑符号就正常的接其他表达式,没有任何括号( ),就是并列
code:
1 #!/bin/bash
2
3 filename=/home/yee/if/a.txt
4 if [ -f $filename ]; then
5 touch a-1.txt
6 fi
7 if [ ! -e $filename ]; then
8 touch t.txt
9 fi
Loong:/home/yee/if# ll
总计 12
-rw-r--r-- 1 root root 75 11-07 11:42 if-1.sh
-rw-r--r-- 1 root root 130 11-07 16:08 if-2.sh
-rw-r--r-- 1 root root 38 11-07 14:21 if-3.sh
Loong:/home/yee/if# sh -x if-2.sh
+ filename=/home/yee/if/a.txt
+ '[' -f /home/yee/if/a.txt ']'
+ '[' '!' -e /home/yee/if/a.txt ']'
+ touch t.txt
Loong:/home/yee/if# ll
总计 12
-rw-r--r-- 1 root root 75 11-07 11:42 if-1.sh
-rw-r--r-- 1 root root 130 11-07 16:08 if-2.sh
-rw-r--r-- 1 root root 38 11-07 14:21 if-3.sh
-rw-r--r-- 1 root root 0 11-07 16:11 t.txt
Loong:/home/yee/if#
3、
if test 表达式 ;then
command1
fi
例:
if test $num -eq0
1 #!/bin/bash
2
3 filename=/home/yee/if/a.txt
4 if test -f $filename
5 then
6 touch a-1.txt
7 else
8 touch t.txt
9 fi
Loong:/home/yee/if# ll
总计 12
-rw-r--r-- 1 root root 75 11-07 11:42 if-1.sh
-rw-r--r-- 1 root root 130 11-07 16:08 if-2.sh
-rw-r--r-- 1 root root 38 11-07 14:21 if-3.sh
-rw-r--r-- 1 root root 0 11-07 16:11 t.txt
Loong:/home/yee/if# sh -x if-3.sh
+ filename=/home/yee/if/a.txt
+ test -f /home/yee/if/a.txt
+ touch t.txt
Loong:/home/yee/if# ll
总计 12
-rw-r--r-- 1 root root 75 11-07 11:42 if-1.sh
-rw-r--r-- 1 root root 130 11-07 16:08 if-2.sh
-rw-r--r-- 1 root root 103 11-07 16:20 if-3.sh
-rw-r--r-- 1 root root 0 11-07 16:20 t.txt
Loong:/home/yee/if# touch a.txt
Loong:/home/yee/if# sh -x if-3.sh
+ filename=/home/yee/if/a.txt
+ test -f /home/yee/if/a.txt
+ touch a-1.txt
Loong:/home/yee/if# ll
总计 12
-rw-r--r-- 1 root root 0 11-07 16:21 a-1.txt
-rw-r--r-- 1 root root 0 11-07 16:21 a.txt
-rw-r--r-- 1 root root 75 11-07 11:42 if-1.sh
-rw-r--r-- 1 root root 130 11-07 16:08 if-2.sh
-rw-r--r-- 1 root root 103 11-07 16:20 if-3.sh
-rw-r--r-- 1 root root 0 11-07 16:20 t.txt
Loong:/home/yee/if#
echo -e参数使输出中的反斜线(\)的说明起作用
echo -n参数使引号后的内容接着输出(不换行)
本文来自博客园,作者:{Julius},转载请注明原文链接:https://www.cnblogs.com/bestechshare/p/16447853.html
可微信加我,了解更多,WeChat:{KingisOK}