可能重复:
android中的shell脚本给出[:未找到
我需要在 shell 脚本中编写一个条件语句。
我用过这种方式
#!/bin/sh
c=1
if [ $c == 1 ]
then
echo c is 1
else
echo c is 0
fi
这在 linux 机器上工作正常,但 android shell 有一些问题,如果[ $C == 1 ]
它给我这样的错误
[: not found
那么shell脚本中是否还有其他条件语句,所以我可以以这种方式转换我的逻辑?