标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Linux下MYsql安装与配置 | 1786 | 0 | 0 | 2009-03-23 | |
Lvm2的管理 | 690 | 0 | 0 | 2009-03-23 | |
LVS管理与维护 | 598 | 0 | 0 | 2009-03-23 | |
Linux系统信息查看命令大全 | 296 | 0 | 0 | 2009-03-23 | |
Sun Cluster 3.0 的规划、安装、配置及管理 | 924 | 0 | 0 | 2009-03-23 | |
实验过的 RAID0、1、5、0+1、1+0 Solaris及SUN | 817 | 0 | 0 | 2009-03-23 | |
linux试题及答案 | 1245 | 0 | 0 | 2009-03-23 | |
关于学习Windows和Linux的一些感言. | 747 | 0 | 0 | 2009-03-23 | |
linux常用命令 | 386 | 0 | 0 | 2009-03-23 | |
linux经典书籍 | 1003 | 0 | 0 | 2009-03-23 | |
linux ping的shell编程 | 1107 | 0 | 0 | 2009-03-23 | |
linux菜单式程序 | 882 | 0 | 0 | 2009-03-23 | |
linux 双网卡绑定 | 847 | 0 | 0 | 2009-03-23 | |
Linux系统下的NAT及防火墙的混合应用 | 1075 | 0 | 0 | 2009-03-23 | |
Linux SMP 学习 | 1179 | 0 | 0 | 2009-03-23 | |
VSFTP服务器全攻略 | 1065 | 0 | 0 | 2009-03-23 | |
Use video RAM as swap in Linux | 832 | 0 | 0 | 2009-03-23 | |
linux 内存管理 网站 | 2115 | 0 | 0 | 2009-03-23 | |
DHCP服务器全攻略 | 887 | 0 | 0 | 2009-03-23 | |
Linux Daemon | 1072 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。