标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
本文将详解Linux下的dns设置 | 1016 | 0 | 0 | 2009-03-23 | |
Linux系统开机过程详细分析 | 646 | 0 | 0 | 2009-03-23 | |
linux服务器 | 652 | 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 | 1907 | 0 | 0 | 2009-03-23 | |
怀念实战派的Linux教学——我在IT培训学校的日子(9) | 1027 | 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 | 1315 | 0 | 0 | 2009-03-23 | |
Linux一句话问题解答之二 | 940 | 0 | 0 | 2009-03-23 | |
Linux一句话问题解决之一 | 695 | 0 | 0 | 2009-03-23 | |
世界4个头号Linux认证浅析---解除你的迷惑 | 1456 | 0 | 0 | 2009-03-23 | |
Linux认证基本知识介绍 | 1280 | 0 | 0 | 2009-03-23 | |
linux共有多少个版本(redhat,redflag,suse,ubuntu等),各有什么特点和缺点? | 1665 | 0 | 0 | 2009-03-23 | |
Red Hat Linux认证RHCE课程介绍 | 1363 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。