美文网首页
test construct

test construct

作者: cutelittlePanda | 来源:发表于2018-03-28 20:39 被阅读0次

$ type test

test is a shell builtin function

if [[ ... ]];   =====>   if test ...;

if [[ "true" ]];  then

    echo "true"

fi

if test "true"; then

    echo "true"

fi

if grep construct

相关文章

网友评论

      本文标题:test construct

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