• shell 测试命令


    一、使用 test 命令可以对文件、字符串等进行测试,一般配合控制语句使用。

    1、字符串测试

    test str1 = str2    //测试字符串是否相等
    test str1 != str2    //测试字符串是否不相等
    test str1    //测试字符串是否部位空
    test -n str1    //测试字符串是否部位空
    test -z str1    //测试字符串是否为空

    2、整数测试

    test int1 -eq int2    //测试整数是否相等
    test int1 -ne int2    //测试整数是否不相等
    test int1 -gt int2    //测试 int1 是否 > int2
    test int1 -ge int2    //测试 int1 是否 >= int2
    test int1 -lt int2    //测试 int1 是否 < int2
    test int1 -le int2    //测试 int1 是否 <= int2

    3、文件测试

    test -d file    //指定文件是否是目录
    test -f file    //指定文件是否是常规文件
    test -x file    //指定文件是否可执行
    test -r file    //指定文件是否可读
    test -w file    //指定文件是否写
    test -a file    //指定文件是否存在
    test -s file    //文件大小是否不是 0          
  • 相关阅读:
    MySQL远程登陆
    一键安装LAMP wordpress
    编译安装httpd2.4.46
    RDB转化AOF 花式删库
    3周作业
    2周作业
    1周作业
    预习第三周作业
    预习第二周作业
    预习第一周作业
  • 原文地址:https://www.cnblogs.com/fangwu/p/8422910.html
Copyright © 2020-2023  润新知