Linux - Bash - test

Shell中的test命令用于检查某个条件是否成立,它可以进行数值、字符和文件三个方面的测试。

数值测试

-eq 等于则为真  # eq: equal
-ne 不等于则为真  # ne: not equal
-gt 大于则为真   # gt: greater than
-ge 大于等于则为真  # ge: greater equal
-lt 小于则为真  # lt: less than 
-le 小于等于则为真  # le: less equal

eg:

#!/bin/bash

num1=100
num2=100

result=$((num1+num2))
echo "result:${result}"

字符串测试

=     等于则为真
!=    不相等则为真
-z  字符串   字符串的长度为零则为真
-n  字符串    字符串的长度不为零则为真

eg:

#!/bin/bash

str1="str1"
str2="str2"
str3=""

if test -z $str3
then
    echo "长度为0"  # 打印
else
    echo "长度不为0"    
fi 

if test $str1 = $str2
then 
    echo "字符串相等"    
else
    echo "字符串不相等"   # 打印
fi 

文件测试

-e 文件名  如果文件存在则为真  # e: exists
-r 文件名  如果文件存在且可读则为真  # r: read
-w 文件名  如果文件存在且可写则为真  # w: write
-x 文件名  如果文件存在且可执行则为真  # x: execute
-s 文件名  如果文件存在且至少有一个字符则为真  # 
-d 文件名  如果文件存在且为目录则为真  # directory
-f 文件名  如果文件存在且为普通文件则为真  # file
-c 文件名  如果文件存在且为字符型特殊文件则为真  # 
-b 文件名  如果文件存在且为块特殊文件则为真  # block

eg:

cd /bin
if test -e ./bash  # 注意:这里也可以写为: bash, 不写./也可以
then
    echo '文件已存在!'
else
    echo '文件不存在!'
fi

另外,Shell还提供了与( -a )、或( -o )、非( ! )三个逻辑操作符用于将测试条件连接起来,其优先级为:”!”最高,”-a”次之,”-o”最低:

cd /bin
if test -e ./notFile -o -e ./bash
then
    echo '有一个文件存在!'
else
    echo '两个文件都不存在'
fi

注意:
上面的例子可以看出,我们是cd到了/bin目录之后,才test的。

    原文作者:廖马儿
    原文地址: https://www.jianshu.com/p/c84cf65d0095
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞