标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
iconv---编码转换 | 665 | 0 | 0 | 2009-05-13 | |
怎么样熟悉linux内存管理 | 1361 | 0 | 0 | 2009-05-13 | |
LINUX VMWare-TOOLS的安装 | 587 | 0 | 0 | 2009-05-12 | |
Rhel5 | 610 | 0 | 0 | 2009-05-12 | |
iptables | 675 | 0 | 0 | 2009-05-12 | |
Linux系统下任务作业自动化执行工具 | 886 | 0 | 0 | 2009-05-11 | |
详解linux系列之字符界面安装apache及配置 | 900 | 0 | 0 | 2009-05-11 | |
[RHEL5企业级Linux服务攻略]--第11季 NIS服务全攻略 | 709 | 0 | 0 | 2009-05-11 | |
Linux中安装.rpm、.tar和.tar.gz或.tgz包 | 1209 | 0 | 0 | 2009-05-10 | |
ubuntu8.04+skyeye1.2.4搭建linux2.6.24+s3c2410的模拟arm-linux开发环境 | 1057 | 0 | 0 | 2009-05-10 | |
Linux终端下的强大工具screen的认识 | 1032 | 0 | 0 | 2009-05-10 | |
装好linux后几件必须先做的事情 | 783 | 0 | 0 | 2009-05-09 | |
Linux 认证,我们到底该去考不考? | 771 | 0 | 0 | 2009-05-09 | |
linux ADSL | 590 | 0 | 0 | 2009-05-09 | |
Linux系统下操作的常用快捷键 | 1202 | 0 | 0 | 2009-05-08 | |
Linux中常用到的命令 | 577 | 0 | 0 | 2009-05-08 | |
4月10日外电头条:Linux峰会召开 众专家信心爆棚 | 539 | 0 | 0 | 2009-05-08 | |
学习linux的方法 | 661 | 0 | 0 | 2009-05-07 | |
linxu下设置JDK和TOMCAT | 1006 | 0 | 0 | 2009-05-07 | |
硬盘安装ubuntu妙法 | 882 | 0 | 0 | 2009-05-07 |
朋友你好!
我刚开始搞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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。