当前位置: 技术问答>linux和unix
test比较字符串,为什么结果相反?
来源: 互联网 发布时间:2017-01-21
本文导语: [root@localhost scripts]# str_a="abc" [root@localhost scripts]# str_b="def" [root@localhost scripts]# test "$str_a" = "$str_b" [root@localhost scripts]# echo $? 1 [root@localhost scripts]# str_b="abc" [root@localhost scripts]# test "$str_a" = "$str_b" [root@localhos...
[root@localhost scripts]# str_a="abc"
[root@localhost scripts]# str_b="def"
[root@localhost scripts]# test "$str_a" = "$str_b"
[root@localhost scripts]# echo $?
1
[root@localhost scripts]# str_b="abc"
[root@localhost scripts]# test "$str_a" = "$str_b"
[root@localhost scripts]# echo $?
0
晕哦,1不是true么,0是false。
[root@localhost scripts]# str_b="def"
[root@localhost scripts]# test "$str_a" = "$str_b"
[root@localhost scripts]# echo $?
1
[root@localhost scripts]# str_b="abc"
[root@localhost scripts]# test "$str_a" = "$str_b"
[root@localhost scripts]# echo $?
0
晕哦,1不是true么,0是false。
|
0是true
|
0是返回值为真。 失败时不会始终返回 1(虽然这是通常返回的值),可能返回一个非零值。
|
不矛盾
你弄混了表达式的计算结果与命令的返回状态
$? 是上一个命令的返回状态
如果表达式返回真,那么test命令的返回状态就是0
你弄混了表达式的计算结果与命令的返回状态
$? 是上一个命令的返回状态
如果表达式返回真,那么test命令的返回状态就是0
|
shell 里只有0是正常的,其他都是错误.
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。