标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Linux软件安装通用思路 | 910 | 0 | 0 | 2009-03-26 | |
[RHEL5企业级Linux服务攻略]--第7季 Apache服务全攻略之高级配置 | 2546 | 0 | 0 | 2009-03-26 | |
linux无法正常显示中文 | 1108 | 0 | 0 | 2009-03-26 | |
在ubuntu 8.04下安装Oracle 11g | 659 | 0 | 0 | 2009-03-26 | |
VM中Linux与主机XP系统共享上网 | 3203 | 0 | 0 | 2009-03-25 | |
使用zebra 配置linux AS4.0 路由协议功能 | 2010 | 0 | 0 | 2009-03-24 | |
Linux用dynamic模拟cisco路由器 | 1716 | 0 | 0 | 2009-03-24 | |
配置TELNET服务 | 1591 | 0 | 0 | 2009-03-24 | |
Red Hat Linux 9下安装VMware Tools | 2806 | 0 | 0 | 2009-03-23 | |
Linux的权限屏蔽 | 1974 | 0 | 0 | 2009-03-23 | |
Samba经典案例完全解读(2009年3月最新) | 2214 | 0 | 0 | 2009-03-23 | |
[RHEL5企业级Linux服务攻略]--第7季 Apache服务全攻略之常规配置 | 1925 | 0 | 0 | 2009-03-23 | |
squid日志的分割 | 2525 | 0 | 0 | 2009-03-23 | |
linux常用命令以及命令帮助的使用 | 2121 | 0 | 0 | 2009-03-23 | |
Lazy Linux: 10 essential tricks for admins | 1493 | 0 | 0 | 2009-03-23 | |
Embedded Linux Primer学习笔记 | 1284 | 0 | 0 | 2009-03-23 | |
linux 系统tty、pty和pts 的概念及区别 | 1937 | 0 | 0 | 2009-03-23 | |
Linux 启动详解 | 1209 | 0 | 0 | 2009-03-23 | |
linux下面nc的使用 | 1523 | 0 | 0 | 2009-03-23 | |
how to install curl | 2530 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。