标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux下必看的60个命令 | 1284 | 0 | 0 | 2009-03-23 | |
中国Linux杰出人物 | 989 | 0 | 0 | 2009-03-23 | |
用Linux作文件共享服务器 | 450 | 0 | 0 | 2009-03-23 | |
Linux各大发行版本简介 | 1053 | 0 | 0 | 2009-03-23 | |
另类说法,Linux不普及在于起名不好 | 525 | 0 | 0 | 2009-03-23 | |
Linux下的常用软件列表 | 440 | 0 | 0 | 2009-03-23 | |
国产Linux操作系统Open Desktop | 1159 | 0 | 0 | 2009-03-23 | |
为Linux打造图形世界——GNOME内幕揭秘 | 588 | 0 | 0 | 2009-03-23 | |
linux的历史演绎1 | 1309 | 0 | 0 | 2009-03-23 | |
SuSE Linux9.1 硬盘安装方法 | 816 | 0 | 0 | 2009-03-23 | |
Linux安全配置 | 1506 | 0 | 0 | 2009-03-23 | |
BSD/Linux Tips | 846 | 0 | 0 | 2009-03-23 | |
linux(Ubuntu)/qt-4.1.0-x11的安装 | 798 | 0 | 0 | 2009-03-23 | |
ORACLE_SID在Linux平台是否大小敏感?是! | 1347 | 0 | 0 | 2009-03-23 | |
答网友《安装linux需要的分区》 | 1546 | 0 | 0 | 2009-03-23 | |
Linux禁Ping的方法 | 487 | 0 | 0 | 2009-03-23 | |
如何在linux下进行ADSL拨号 | 1665 | 0 | 0 | 2009-03-23 | |
Linux网络相关配置文件 | 1024 | 0 | 0 | 2009-03-23 | |
如何在linux下进行ADSL拨号 | 1067 | 0 | 0 | 2009-03-23 | |
Linux ADSL拨号上网 | 1451 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。