标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Linux常用词汇及术语大全 | 717 | 0 | 0 | 2009-03-23 | |
slackware12.0 安装AdobeReader_chs-7.0.9-1.i386.tar.gz后程序启动报错解决? | 1261 | 0 | 0 | 2009-03-23 | |
Linux网络管理之三:从windows访问Linux共享打印 | 1146 | 0 | 0 | 2009-03-23 | |
linux从菜鸟到高手 | 606 | 0 | 0 | 2009-03-23 | |
Ubuntu升级后登录界面遇到“human.xml”问题 | 654 | 0 | 0 | 2009-03-23 | |
新手安装Ubuntu Linux Server 7.10切身体会 | 1132 | 0 | 0 | 2009-03-23 | |
linux 中文显示乱码解决办法 | 692 | 0 | 0 | 2009-03-23 | |
Unix/Linux平台下JDK 1.2 中Swing的中文显示 | 811 | 0 | 0 | 2009-03-23 | |
Linux新增硬盘 | 711 | 0 | 0 | 2009-03-23 | |
使用yum更新补丁包 | 1104 | 0 | 0 | 2009-03-23 | |
各类unix和linux密码丢失解决方法 | 650 | 0 | 0 | 2009-03-23 | |
修改Linux系统时间 | 782 | 0 | 0 | 2009-03-23 | |
Linux EXT2文件系统结构分析(详情见附件) | 1512 | 0 | 0 | 2009-03-23 | |
linux/unix文件系统的备份和恢复 | 574 | 0 | 0 | 2009-03-23 | |
Red Hat Linux 安装 (本地、网络安装) | 1565 | 0 | 0 | 2009-03-23 | |
linux/unix文件系统的备份和恢复 | 695 | 0 | 0 | 2009-03-23 | |
学习linux几点忠告 | 271 | 0 | 0 | 2009-03-23 | |
Linux服务器备份和恢复技巧 | 1242 | 0 | 0 | 2009-03-23 | |
基于Linux下Iptables限制BT下载的研究 | 1131 | 0 | 0 | 2009-03-23 | |
编译Linux系统内核的方法步骤 | 1951 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。