标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
iptables學習 | 1396 | 0 | 0 | 2009-03-23 | |
绝对Linux服务器管理利器webmin | 1912 | 0 | 0 | 2009-03-23 | |
怀念实战派的Linux教学——我在IT培训学校的日子(9) | 1033 | 0 | 0 | 2009-03-23 | |
第一次亲密接触Linux——我在IT培训学校的日子(10) | 829 | 0 | 0 | 2009-03-23 | |
Linux系统启动脚本分析之rc | 1300 | 0 | 0 | 2009-03-23 | |
linux-dhcp | 1161 | 0 | 0 | 2009-03-23 | |
Linux启动脚本分析之functions | 1343 | 0 | 0 | 2009-03-23 | |
Linux一句话问题解答之二 | 945 | 0 | 0 | 2009-03-23 | |
Linux一句话问题解决之一 | 704 | 0 | 0 | 2009-03-23 | |
世界4个头号Linux认证浅析---解除你的迷惑 | 1462 | 0 | 0 | 2009-03-23 | |
Linux认证基本知识介绍 | 1285 | 0 | 0 | 2009-03-23 | |
linux共有多少个版本(redhat,redflag,suse,ubuntu等),各有什么特点和缺点? | 1671 | 0 | 0 | 2009-03-23 | |
Red Hat Linux认证RHCE课程介绍 | 1372 | 0 | 0 | 2009-03-23 | |
红旗Linux认证证书样本 | 1138 | 0 | 0 | 2009-03-23 | |
国内Linux认证类型详解 | 900 | 0 | 0 | 2009-03-23 | |
Redhat Linux版本说明 | 1882 | 0 | 0 | 2009-03-23 | |
grub密码加密实现方法 | 888 | 0 | 0 | 2009-03-23 | |
Linux 下查看用户 | 803 | 0 | 0 | 2009-03-23 | |
Linux服务器集群系统――LVS(Linux Virtual Server)项目 | 810 | 0 | 0 | 2009-03-23 | |
Linux认证更值钱? | 983 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。