Shell test 命令

Posted 弗雷塞斯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell test 命令相关的知识,希望对你有一定的参考价值。

Shell中的 test 命令用于检查某个条件是否成立,它可以进行数值、字符和文件三个方面的测试
num1=100
num2=100
if test $[num1] -eq $[num2]
then
    echo \'两个数相等!\'
else
    echo \'两个数不相等!\'
fi
输出结果:
两个数相等!
文件测试
cd /bin
if test -e ./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
输出结果:
有一个文件存在!

以上是关于Shell test 命令的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本中实现切换用户并执行命令操作

Shell test命令(Shell [])详解,附带所有选项及说明

Shell test命令

shell--7Shell test 命令

shell中常用的基础命令详解

shell测试命令test[ ][[ ]]