标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
LINUX 的目录树 | 650 | 0 | 0 | 2009-03-23 | |
Linux 忘记密码如何登陆—续篇2救援模式 | 476 | 0 | 0 | 2009-03-23 | |
Linux下BLAST的使用 | 1949 | 0 | 0 | 2009-03-23 | |
linux Webmin安装配置 | 699 | 0 | 0 | 2009-03-23 | |
虚拟机下的linux与windows文件共享 | 1313 | 0 | 0 | 2009-03-23 | |
Linux 用户账号管理 | 1203 | 0 | 0 | 2009-03-23 | |
Apache+Tomcat整合小记 | 2175 | 0 | 0 | 2009-03-23 | |
kernel panic | 1153 | 0 | 0 | 2009-03-23 | |
如何在Linux系统下配置RAID1? | 1873 | 0 | 0 | 2009-03-23 | |
CentOS 中安装mysql5 | 833 | 0 | 0 | 2009-03-23 | |
在LINUX中部署DHCP服务器 | 749 | 0 | 0 | 2009-03-23 | |
在LINUX中部署FTP服务器 | 1377 | 0 | 0 | 2009-03-23 | |
在LINUX中部署DNS服务器 | 837 | 0 | 0 | 2009-03-23 | |
在LINUX中部署Samba服务器 | 720 | 0 | 0 | 2009-03-23 | |
linux下搭建DNS服务器 | 1251 | 0 | 0 | 2009-03-23 | |
图文教程:在vm中安装redhat linux9 | 1293 | 0 | 0 | 2009-03-23 | |
8月第1周回顾:全球设备商排名榜出炉 北京打造无线城市 | 1665 | 0 | 0 | 2009-03-23 | |
在LINUX中部署sendmail服务器 | 674 | 0 | 0 | 2009-03-23 | |
开始linux之旅 | 586 | 0 | 0 | 2009-03-23 | |
postfix Policyd v2 的应用介绍(-) | 880 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。