美文网首页
08shell test

08shell test

作者: 毛子阿卡西 | 来源:发表于2018-05-14 17:16 被阅读0次
    • Shell中的 test 命令用于检查某个条件是否成立,它可以进行数值、字符和文件三个方面的测试。
    • 数值测试
    num1=100
    num2=100
    if test $[num1] -eq $[num2]
    then
        echo '两个数相等!'
    else
        echo '两个数不相等!'
    fi
    
    #代码中的[]执行基本算术运算,不能有空格
    [a+b]
    
    • 字符串测试
    num1="ru1noob"
    num2="runoob"
    if test $num1 = $num2
    then
        echo '两个字符串相等!'
    else
        echo '两个字符串不相等!'
    fi
    
    • 文件测试
    cd /bin
    if test -e ./notFile -o -e ./bash
    then
        echo '至少有一个文件存在!'
    else
        echo '两个文件都不存在'
    fi
    

    相关文章

      网友评论

          本文标题:08shell test

          本文链接:https://www.haomeiwen.com/subject/gfujdftx.html