当前位置: 技术问答>linux和unix
一个简单的shell脚本,请大虾看看问题在哪?
来源: 互联网 发布时间:2016-03-08
本文导语: #!/bin/sh if [-n grep "listening on port 9908" 111.txt]; then echo "jms startup ok!" else echo "fail" fi 执行结果: ./liu.sh: line 3: [-n: command not found fail [-n: command not found是什么原因? | ...
#!/bin/sh
if [-n grep "listening on port 9908" 111.txt];
then
echo "jms startup ok!"
else
echo "fail"
fi
执行结果:
./liu.sh: line 3: [-n: command not found
fail
[-n: command not found是什么原因?
if [-n grep "listening on port 9908" 111.txt];
then
echo "jms startup ok!"
else
echo "fail"
fi
执行结果:
./liu.sh: line 3: [-n: command not found
fail
[-n: command not found是什么原因?
|
命令找不到, [ -n ***** ] 注意空格