[

[
名称:判断条件表达式
总揽:
    [    Arg…… ]
描述:
    判断条件表达式
这个命令和"test"命令一样。但是必须有一个']'来匹配'['
注意: [和Arg之间要至少有一个空格,符号]也一样
参见:
    test
实例:
    if [ -f "/tmp/tmpfile" ];then
echo "存在文件/tmp/tmpfile"
    fi
    等价
    if test -f "/tmp/tmpfile" ;then
echo "存在文件/tmp/tmpfile"
    fi

你可能感兴趣的:(test,职场,休闲,[,])