当前位置: 技术问答>linux和unix
执行shell脚本时报错command not found
来源: 互联网 发布时间:2017-04-11
本文导语: 我执行shell脚本的时候总是报这个错,不知道该怎么纠正,大家帮个忙吧。 下面是脚本代码: if [[$1 -lt 1 -o -gt 10]] then echo "error input" else echo "input is:$1" fi 报错如下: 这个到底是怎么回事?是shell脚本有问题...
我执行shell脚本的时候总是报这个错,不知道该怎么纠正,大家帮个忙吧。
下面是脚本代码:
if [[$1 -lt 1 -o -gt 10]]
then echo "error input"
else echo "input is:$1"
fi
报错如下:
这个到底是怎么回事?是shell脚本有问题吗?
下面是脚本代码:
if [[$1 -lt 1 -o -gt 10]]
then echo "error input"
else echo "input is:$1"
fi
报错如下:
这个到底是怎么回事?是shell脚本有问题吗?
|
if [ $1 -lt 1 -o $1 -gt 10 ] ; then
echo "error input"
else
echo "input is:$1"
fi