标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux samba | 851 | 0 | 0 | 2009-03-23 | |
玩转WindowsXP 访问Linux下的共享文件 | 845 | 0 | 0 | 2009-03-23 | |
大势所趋 Linux和Windows协同工作 | 1248 | 0 | 0 | 2009-03-23 | |
Linux销售代表的“抗议” | 1398 | 0 | 0 | 2009-03-23 | |
Linux命令大全供大家一起学习 | 694 | 0 | 0 | 2009-03-23 | |
apache2+php+oracle9的安装 | 826 | 0 | 0 | 2009-03-23 | |
linux时钟 | 780 | 0 | 0 | 2009-03-23 | |
让Linux也能“Fusion”──VMware Workstation 6.5 | 2195 | 0 | 0 | 2009-03-23 | |
【博主推荐】linux-电子书下载专辑 | 2033 | 0 | 0 | 2009-03-23 | |
linux下查找一般文件方法 | 993 | 0 | 0 | 2009-03-23 | |
自动备份数据库的Shell | 1145 | 0 | 0 | 2009-03-23 | |
linux作业有答案 | 2656 | 0 | 0 | 2009-03-23 | |
第四课:一个人的圣诞节?【Linux培训实录】 | 1158 | 0 | 0 | 2009-03-23 | |
计算机领域要的是精通,Linux也不例外 | 1002 | 0 | 0 | 2009-03-23 | |
在Red Hat Linux中自动运行程序 | 1035 | 0 | 0 | 2009-03-23 | |
FC7安装MySQL | 1682 | 0 | 0 | 2009-03-23 | |
我是如何解决在Window环境下虚拟Linux上网的问题的! | 668 | 0 | 0 | 2009-03-23 | |
chroot环境的快速构建 | 919 | 0 | 0 | 2009-03-23 | |
linux 关于服务的自动启动 | 971 | 0 | 0 | 2009-03-23 | |
2张不错的图:linux发行版大全和黑客产业链 | 703 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。