标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux 文件颜色的含义 | 1608 | 0 | 0 | 2009-04-24 | |
绝对常用的Linux命令 | 1075 | 0 | 0 | 2009-04-24 | |
关于Linux系统的运行级别 | 1048 | 0 | 0 | 2009-04-23 | |
解析Linux操作系统文件目录 | 1000 | 0 | 0 | 2009-04-23 | |
Jboss的安装 | 1481 | 0 | 0 | 2009-04-22 | |
QEMU 环境下Gentoo 启动问题 | 733 | 0 | 0 | 2009-04-22 | |
RH033 Unit16 The Linux Filesystem In-Depth | 692 | 0 | 0 | 2009-04-22 | |
[RHEL5企业级Linux服务攻略]--第9季 Squid服务全攻略之高级配置 | 1007 | 0 | 0 | 2009-04-21 | |
Linux下使用md5sum查看文件及程序是否被修改 | 907 | 0 | 0 | 2009-04-21 | |
Linux下搭建DHCP服务器 | 875 | 0 | 0 | 2009-04-20 | |
在NIS服务器上实验密码验证功能 | 819 | 0 | 0 | 2009-04-20 | |
windows下查看和操作linux分区文件的工具 | 1174 | 0 | 0 | 2009-04-19 | |
PXE网络安装Linux | 1126 | 0 | 0 | 2009-04-19 | |
Linux的防火墙规则 | 1265 | 0 | 0 | 2009-04-19 | |
text info | 759 | 0 | 0 | 2009-04-18 | |
nagios完整配置文档(第一版) PDF 下载 | 917 | 0 | 0 | 2009-04-18 | |
linux安装出现异常 | 1116 | 0 | 0 | 2009-04-17 | |
Linux之Mysql+apache+php的安装(上) | 1400 | 0 | 0 | 2009-04-17 | |
windows下解压linux、unix平台TAR包的乱码问题 | 1735 | 0 | 0 | 2009-04-16 | |
把linux的man手册转化为windows下可读的格式 | 888 | 0 | 0 | 2009-04-16 |
朋友你好!
我刚开始搞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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。