chapter 12.使用结构化命令

2017-12-26  本文已影响0人  是阿离

if-then

if cmdLine
then
    echo "Run the cmd"
fi

或者:

if cmdLine; then
    echo "Run the cmd"
fi

if-then-else

if cmdLine; then
    cmdLine
else
    cmdLine
fi

if-then-elif-then-else-fi

if cmdLine; then
    cmd
elif cmd; then
    cmd
else
    cmd
fi

test || []

test condition
数值比较
n1 -eq n2
n1 -gt n2
n1 -lt n2
n1 -ne n2
n1 -le n2
字符串比较
str1 = str2
str1 != str2
str1 < str2
str1 > str2
-n str1 检查str1的长度是否非0
-z str1 检查str1长度是否为0
文件比较
-d file 检查file是否存在并为一个目录
-e file 检查file是否存在
-f file 检查file是否存在并为一个文件
-r file 检查file是否存在并可读
-s file 检查file是否存在并非空
-w file 检查file是否存在并可写
-x file 检查file是否存在并可执行
-O file 检查file是否存在并属于当前用户所有
-G file 检查file是否存在并且默认组与当前用户相同
file1 -nt file2 检查file1是否比file2新(new than)
file1 -ot file2 检查file1是否比file2旧(old than)
复合条件测试
[ condition1 ] || [ condition2 ]
[ condition1 ] && [ condition2 ]

if-else其他高级特性

双括号
(( expression ))

主要用于高级数学表达式计算,expression可以为:

val++
val--
++val
--val
! 逻辑求反
~  位求反
** 幂运算
<< 左位移
>> 右位移
& 位布尔且
| 位布尔或
&& 逻辑且
|| 逻辑或

使用方法为:

if (( $var1 ** 2 > $var2 )); then
...

另外:在双括号中大于、小于号不需要转义

双方括号
[[ expression ]]

主要用于字符串比较,expression使用test命令中采用的标准字符串比较,即ASCII码比较,但它提供了另一个特性——模式匹配(pattern matching),例如:

if [[ $USER == franc* ]]; then
...

==将右边的字符串franc*视作一个模式,并启用模式匹配规则,判断$USER变量中是否以franc开头,如果是,执行then后面的cmd

case

case variable in
pattren1 | pattern2) cmd1; ;
pattren3) cmd2; ;
*) defaultCmd3; ;
esac

参考文章

Linux Command Line and Shell Scripting Bible
该系列其他文章请查看:
Linux命令行与shell脚本

上一篇下一篇

猜你喜欢

热点阅读