标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Linux Samba服务器 | 1296 | 0 | 0 | 2009-03-23 | |
Linux直接与编译安装Vsftpd服务器 | 1025 | 0 | 0 | 2009-03-23 | |
Red Hat9实用工具 | 800 | 0 | 0 | 2009-03-23 | |
LDAP服务 | 1652 | 0 | 0 | 2009-03-23 | |
linux基础知识 | 839 | 0 | 0 | 2009-03-23 | |
详细介绍通过ISO文件进行LINUX硬盘安装 | 807 | 0 | 0 | 2009-03-23 | |
用Ubuntu Linux系统架设cacti监控服务器 | 714 | 0 | 0 | 2009-03-23 | |
LINUX命令模式下各种下载工具大集合 | 1404 | 0 | 0 | 2009-03-23 | |
Java基本环境配置(Windows&Linux环境下) | 843 | 0 | 0 | 2009-03-23 | |
How to read Mac .DMG file in Linux or PC | 868 | 0 | 0 | 2009-03-23 | |
linux下安装eva qq configure 错误详解 | 825 | 0 | 0 | 2009-03-23 | |
multi-process debug under Linux | 667 | 0 | 0 | 2009-03-23 | |
Linux网络服务器配置基础 | 746 | 0 | 0 | 2009-03-23 | |
Linux下文件复制、删除和移动命令详解 | 2850 | 0 | 0 | 2009-03-23 | |
更改linux系统root用户密码一法 | 1530 | 0 | 0 | 2009-03-23 | |
linux从字符界面转入图形界面一法 | 679 | 0 | 0 | 2009-03-23 | |
理解Linux系统的日志 | 550 | 0 | 0 | 2009-03-23 | |
产生随机数 | 832 | 0 | 0 | 2009-03-23 | |
嵌入式LINUX学习第一篇(1) | 607 | 0 | 0 | 2009-03-23 | |
上海某上市网络公司笔试题--系统管理员 | 1090 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。