分析:(1)出现的脚本所"/>

unary operator expected

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unary operator expected相关的知识,希望对你有一定的参考价值。

问题:写的脚本执行的时候出现报错,如下

技术分享

分析:

(1)出现的脚本所在行为if [ $result -eq 0 ];then

(2)报错unary operator expected的中文意思是应该使用一元运算符,也就是说这个$result假如

为空的话就成了 if [ -eq 0] ,系统就会认为是少了一个参数,只有一个 -eq 0,没有左边的参数,

所以就会出现上述报错

解决:可以将脚本改为if [[ $result -eq 0 ]];then,多加一对[]号。至于为什么,我也是百度的

本文出自 “庭中有奇树” 博客,请务必保留此出处http://zhangdl.blog.51cto.com/11050780/1850986

以上是关于unary operator expected的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本执行报错[: 0: unary operator expected

shell脚本报错:"[: =: unary operator expected"

C Operators

C Operators

C++ operator=的问题

C++中operator用法