标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Fedora10使用若干问题 | 869 | 0 | 0 | 2009-03-23 | |
linux下安装mysql | 1437 | 0 | 0 | 2009-03-23 | |
linux下安装apache | 775 | 0 | 0 | 2009-03-23 | |
mysql数据同步更新 | 1262 | 0 | 0 | 2009-03-23 | |
CentOS linux下载 | 1318 | 0 | 0 | 2009-03-23 | |
cannot restore segment prot after reloc: Permission denied | 1961 | 0 | 0 | 2009-03-23 | |
Linux系统下rpm软件包的强制安装 | 1188 | 0 | 0 | 2009-03-23 | |
linux基础教程(推荐) | 411 | 0 | 0 | 2009-03-23 | |
Linux全攻略--PostgreSQL数据库配置与管理 | 1325 | 0 | 0 | 2009-03-23 | |
关于boot分区排错全解析,救援模式,内核安装。 | 1093 | 0 | 0 | 2009-03-23 | |
Linux 中 RPM 命令参数使用详解 | 1029 | 0 | 0 | 2009-03-23 | |
嵌入式系统的虚拟内存分布 | 897 | 0 | 0 | 2009-03-23 | |
RHCE课程-RH131Linux管理笔记二-Linux系统启动流程 | 794 | 0 | 0 | 2009-03-23 | |
linux 防火墻生成器shorewall | 739 | 0 | 0 | 2009-03-23 | |
LINUX中的周期性进程cron原理及使用详解 | 892 | 0 | 0 | 2009-03-23 | |
Ubuntu 8.10常用软件,设置,配置 | 1512 | 0 | 0 | 2009-03-23 | |
nginx配置httpd服务遇到问题 | 1443 | 0 | 0 | 2009-03-23 | |
mysql启动错误 | 1026 | 0 | 0 | 2009-03-23 | |
用expect实现ssh自动登录对服务器进行批量管理 | 1234 | 0 | 0 | 2009-03-23 | |
安装完永中office2009不能正常启动 | 954 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。