标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
在linux下卸载 oracle10g | 1951 | 0 | 0 | 2009-03-23 | |
用tar来备份Ubuntu操作系统 | 505 | 0 | 0 | 2009-03-23 | |
Linux下安装、配置ACE | 1438 | 0 | 0 | 2009-03-23 | |
linux下增加swap分区容量 | 928 | 0 | 0 | 2009-03-23 | |
Linux 操作系统启动流程 | 905 | 0 | 0 | 2009-03-23 | |
解决mysql--Can't get stat of '' (Errcode: 13) | 1135 | 0 | 0 | 2009-03-23 | |
Linux下两个远程登陆用户共享同一个登陆shell | 943 | 0 | 0 | 2009-03-23 | |
Linux & Solaris硬件信息查看的命令 | 498 | 0 | 0 | 2009-03-23 | |
ELF文件格式解析 | 699 | 0 | 0 | 2009-03-23 | |
linux 磁盘配额 | 558 | 0 | 0 | 2009-03-23 | |
[原创]Zenoss配置入门--通过SSH远程监控Linux | 584 | 0 | 0 | 2009-03-23 | |
Linux整理笔记之一:用户环境 | 1048 | 0 | 0 | 2009-03-23 | |
linux整理笔记二 系统管理命令 | 523 | 0 | 0 | 2009-03-23 | |
linux整理笔记之三 文件系统维护 | 461 | 0 | 0 | 2009-03-23 | |
linux整理笔记之四 :管理磁盘文件系统 | 343 | 0 | 0 | 2009-03-23 | |
linux整理笔记之十三 升级软件 | 700 | 0 | 0 | 2009-03-23 | |
Linux系统的部署 | 748 | 0 | 0 | 2009-03-23 | |
Linux系统下到哪儿寻找硬件错误 | 1096 | 0 | 0 | 2009-03-23 | |
Linux mail解决方案详解 | 1874 | 0 | 0 | 2009-03-23 | |
Wayland:Linux的新X Server | 1836 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。