标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux如何知道某个端口运行的是什么程序 | 1353 | 0 | 0 | 2009-03-23 | |
学习Linux需要了解的几个问题 | 358 | 0 | 0 | 2009-03-23 | |
Linux操作系统基本使用知识 | 771 | 0 | 0 | 2009-03-23 | |
改变linux终端颜色 | 947 | 0 | 0 | 2009-03-23 | |
Linux多路径的使用及介绍 | 1516 | 0 | 0 | 2009-03-23 | |
Using Device-Mapper Multipath Configuration and Administration 官方文档 | 1047 | 0 | 0 | 2009-03-23 | |
VMware 中Linux系统网络连接 | 1228 | 0 | 0 | 2009-03-23 | |
Linux系统命令和使用技巧8则 | 350 | 0 | 0 | 2009-03-23 | |
openldap学习笔记(安装配置openldap-2.3.32) | 1026 | 0 | 0 | 2009-03-23 | |
linux下完全删除Oracle | 1247 | 0 | 0 | 2009-03-23 | |
历时15天才架起的NAGIOS | 888 | 0 | 0 | 2009-03-23 | |
定制安装CentOS-5.2企业版Linux(待续) | 867 | 0 | 0 | 2009-03-23 | |
用iptables设置有状态防火墙 | 749 | 0 | 0 | 2009-03-23 | |
NTPserver配置实例 | 1027 | 0 | 0 | 2009-03-23 | |
linux之squid | 1013 | 0 | 0 | 2009-03-23 | |
Linux与Windows Server 2008 | 2005 | 0 | 0 | 2009-03-23 | |
linux之apache | 1217 | 0 | 0 | 2009-03-23 | |
ubuntu 8.04主菜单打不开 | 787 | 0 | 0 | 2009-03-23 | |
linux之ip_tables | 973 | 0 | 0 | 2009-03-23 | |
Linux 系统中的超级权限的控制 | 894 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。