标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
在ubuntu下解决zendstudio5.5不支持中文的问题 | 1036 | 0 | 0 | 2009-03-23 | |
LINUX之SAMBA学习之道 | 890 | 0 | 0 | 2009-03-23 | |
RedHat Linux 9.0 安装教程 | 1061 | 0 | 0 | 2009-03-23 | |
RedFlag HA启动失败故障处理一例 | 1385 | 0 | 0 | 2009-03-23 | |
什么是SSH | 940 | 0 | 0 | 2009-03-23 | |
本文将详解Linux下的dns设置 | 1017 | 0 | 0 | 2009-03-23 | |
Linux系统开机过程详细分析 | 646 | 0 | 0 | 2009-03-23 | |
linux服务器 | 653 | 0 | 0 | 2009-03-23 | |
LINUX 去除DOS文件行末的^M. | 891 | 0 | 0 | 2009-03-23 | |
安装mplayer 播放器 | 676 | 0 | 0 | 2009-03-23 | |
FreeBSD与Linux的比较 | 556 | 0 | 0 | 2009-03-23 | |
Linux系统下两种自动启动Tomcat的方法 | 830 | 0 | 0 | 2009-03-23 | |
iptables學習 | 1390 | 0 | 0 | 2009-03-23 | |
绝对Linux服务器管理利器webmin | 1908 | 0 | 0 | 2009-03-23 | |
怀念实战派的Linux教学——我在IT培训学校的日子(9) | 1029 | 0 | 0 | 2009-03-23 | |
第一次亲密接触Linux——我在IT培训学校的日子(10) | 821 | 0 | 0 | 2009-03-23 | |
Linux系统启动脚本分析之rc | 1295 | 0 | 0 | 2009-03-23 | |
linux-dhcp | 1155 | 0 | 0 | 2009-03-23 | |
Linux启动脚本分析之functions | 1316 | 0 | 0 | 2009-03-23 | |
Linux一句话问题解答之二 | 940 | 0 | 0 | 2009-03-23 |
朋友你好!
我刚开始搞linux,碰到了很多问题,想问你下,希望能帮我解答下。
下面是我的一段shell 程序
#!/bin/sh
while [ 0 ]
do
read score
if [ $score -lt 60 ];then
echo " you must work hard!"
elif [ $score -lt 80 ]
echo " just so so,you should do better"
elif [ $score -le 100 ]
echo ”done well ,keep it "
fi
echo " if you want to contiune press y,else press any key to exit"
read C
if [ $c =y ];then
contiune
else
echo "thanks for coming"
fi
done
运行
$ sh -x test.sh
有个错误提示在第二个if出(if 【 $C =y ]) unary operator expected
是什么原因呀?
我以为是一个shell程序里不能同时出现两个if--then--else语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。