标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
一个linux系统下的入侵分析案例 | 400 | 0 | 0 | 2009-03-23 | |
/dev/null 2>&1 详解 | 906 | 0 | 0 | 2009-03-23 | |
Linux启动及控制服务进程 | 1378 | 0 | 0 | 2009-03-23 | |
top命令详解 | 447 | 0 | 0 | 2009-03-23 | |
linux学习方向和方法浅谈 | 292 | 0 | 0 | 2009-03-23 | |
LINUX系统启动级别的介绍与解释 | 873 | 0 | 0 | 2009-03-23 | |
单网卡Squid AS4 U5 设置 | 1156 | 0 | 0 | 2009-03-23 | |
Linux守护进程详解(1) | 1563 | 0 | 0 | 2009-03-23 | |
linux 双网卡 NAT共享上网 | 2037 | 0 | 0 | 2009-03-23 | |
Cent OS 密码恢复 | 784 | 0 | 0 | 2009-03-23 | |
linux开机顺序(详解) | 1385 | 0 | 0 | 2009-03-23 | |
Linux守护进程详解(2) | 975 | 0 | 0 | 2009-03-23 | |
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 |
朋友你好!
我刚开始搞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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。