或者,为什么下面的脚本什么都不打印?
x=1 if[ $x = 1 ] then echo "ok" else echo "no" fi
x=1 if [ $x -eq 1 ] then echo "ok" else echo "no" fi
而对于其他人,请使用== not =.