标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
esx终于挂了 | 761 | 0 | 0 | 2009-03-23 | |
esx中linux的网卡安装 | 825 | 0 | 0 | 2009-03-23 | |
Gentoo | 766 | 0 | 0 | 2009-03-23 | |
vsftpd 虚拟目录 (记录) | 1312 | 0 | 0 | 2009-03-23 | |
resin3.1+apache2.2.8 整合(笔记) | 969 | 0 | 0 | 2009-03-23 | |
Linux链接类型详解 | 728 | 0 | 0 | 2009-03-23 | |
ZABBIX SOLUTION | 905 | 0 | 0 | 2009-03-23 | |
chmod命令详解使用格式和方法 | 469 | 0 | 0 | 2009-03-23 | |
Bourne Shell及shell编程 | 1058 | 0 | 0 | 2009-03-23 | |
利用dump和restore实现Linux的备份和还原 | 497 | 0 | 0 | 2009-03-23 | |
命令行小技巧 | 578 | 0 | 0 | 2009-03-23 | |
查看Linux系统信息的常用命令 | 1441 | 0 | 0 | 2009-03-23 | |
linux开机启动脚本的顺序 | 1229 | 0 | 0 | 2009-03-23 | |
利用samba3.0做PDC域控制器的安装过程 | 1139 | 0 | 0 | 2009-03-23 | |
Linux系统下安装mysql数据库 | 1362 | 0 | 0 | 2009-03-23 | |
linux 启动服务项说明 | 911 | 0 | 0 | 2009-03-23 | |
apache和nginx互切同时都支持fastcgi | 817 | 0 | 0 | 2009-03-23 | |
Linux2.6 内核的 Initrd 机制解析 | 714 | 0 | 0 | 2009-03-23 | |
Linux如何在系统启动时自动加载模块(转) | 997 | 0 | 0 | 2009-03-23 | |
老生常谈-linux 引导加密 | 721 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。