标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
學linux,從空杯開始。 | 702 | 0 | 0 | 2009-03-23 | |
快来使用CactiEZ中文版 | 1148 | 0 | 0 | 2009-03-23 | |
linux中sendmail+squirrelmail配置 | 1223 | 0 | 0 | 2009-03-23 | |
linux的未来发展现状 | 853 | 0 | 0 | 2009-03-23 | |
Linux下用dump实现备份和还原 | 569 | 0 | 0 | 2009-03-23 | |
Windows 到 Linux 之旅: 第 8 部分. 备份与恢复 | 485 | 0 | 0 | 2009-03-23 | |
ibm系列文章 --> Windows 到 Linux 之旅 | 896 | 0 | 0 | 2009-03-23 | |
rhel5 nds 配置 | 869 | 0 | 0 | 2009-03-23 | |
Linux下截图技巧 | 1272 | 0 | 0 | 2009-03-23 | |
RHCE_LAB(3)Linux(RHEL5)root用户忘记密码的解决方法 | 727 | 0 | 0 | 2009-03-23 | |
Linux下如何识别IDER的软驱和光驱 | 929 | 0 | 0 | 2009-03-23 | |
Ubuntu 8.10 配置svn | 1080 | 0 | 0 | 2009-03-23 | |
2009我的lamp之路 | 684 | 0 | 0 | 2009-03-23 | |
RHCE_LAB(5)Linux救援模式修复损坏的boot loader | 697 | 0 | 0 | 2009-03-23 | |
如何解决 linux 操作系统显示中文乱码问题? | 2723 | 0 | 0 | 2009-03-23 | |
Linux系统环境下安装配置JDK | 865 | 0 | 0 | 2009-03-23 | |
Linux 系统信息监控统计命令小结 | 459 | 0 | 0 | 2009-03-23 | |
Red Hat Linux 9键盘的快捷操作 | 763 | 0 | 0 | 2009-03-23 | |
[RHEL5企业级Linux服务攻略]--第4季 DNS服务全攻略 | 902 | 0 | 0 | 2009-03-23 | |
快速搭建基于Linux的MRTG监控网络流量笔记 | 387 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。