标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
今天Google Desktop的Linux版发行了! | 810 | 0 | 0 | 2009-03-23 | |
支持国产 就用MAGICLinux | 805 | 0 | 0 | 2009-03-23 | |
菜鸟入门 Linux知识大全 | 1006 | 0 | 1 | 2009-03-23 | |
根据需求选择合适的Linux发行版本 | 781 | 0 | 0 | 2009-03-23 | |
Linux下USB设备检测 | 1422 | 0 | 0 | 2009-03-23 | |
如何学习linux编程 | 1835 | 0 | 1 | 2009-03-23 | |
Linux基础知识(上) | 939 | 0 | 1 | 2009-03-23 | |
linux下的samba配置 | 915 | 0 | 0 | 2009-03-23 | |
linux下的samba服务 | 1442 | 0 | 0 | 2009-03-23 | |
VMware虚拟机 运行LINUX的问题 | 1001 | 0 | 0 | 2009-03-23 | |
linux上支持.NET,一次艰难的配置mono过程 | 1386 | 0 | 0 | 2009-03-23 | |
?úLinux?D?ó’ìó2±P | 814 | 0 | 0 | 2009-03-23 | |
Linux基础知识(下) | 1012 | 0 | 1 | 2009-03-23 | |
linux安全书籍 | 1560 | 0 | 0 | 2009-03-23 | |
Linux下DHCP服务器配置全过程 | 1174 | 0 | 0 | 2009-03-23 | |
linux下的重要服务dns | 1645 | 0 | 0 | 2009-03-23 | |
详解LINUX下的重要服务之DNS配置 | 1408 | 0 | 0 | 2009-03-23 | |
linux "VI编辑器"如何显示中文? | 1937 | 0 | 0 | 2009-03-23 | |
linux字符集设置 | 1466 | 0 | 0 | 2009-03-23 | |
奇怪,高手来看下古怪的linux网卡无法启动 | 1759 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。