标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Linux管理员手册(6)--登录和注销 | 680 | 0 | 0 | 2009-03-23 | |
Linux管理员手册(8)--备份 | 425 | 0 | 0 | 2009-03-23 | |
Linux管理员手册(7)--管理用户帐户 | 503 | 0 | 0 | 2009-03-23 | |
解析Linux特殊文件 | 782 | 0 | 0 | 2009-03-23 | |
如何在Linux下压缩文件 | 833 | 0 | 0 | 2009-03-23 | |
简析Linux中如何改变文件或目录的访问权限 | 1677 | 0 | 0 | 2009-03-23 | |
Linux/Unix环境下的make和makefile详解 | 1092 | 0 | 0 | 2009-03-23 | |
linux 下socks5 配置 | 733 | 0 | 0 | 2009-03-23 | |
保护Linux下的Apache网站 | 654 | 0 | 0 | 2009-03-23 | |
Web发展史上十件大事:Linux、Firefox入选 | 677 | 0 | 0 | 2009-03-23 | |
linux配置命令总结(连载) | 365 | 0 | 0 | 2009-03-23 | |
Linux基金会总裁预测09年Linux大势 | 708 | 0 | 0 | 2009-03-23 | |
Linux LibFx V0.9.0(飞信) | 705 | 0 | 0 | 2009-03-23 | |
linux 时间同步两法 | 709 | 0 | 0 | 2009-03-23 | |
在linux中使用ramdisk文件系统 | 783 | 0 | 0 | 2009-03-23 | |
How to add Linux Samba to AD | 949 | 0 | 0 | 2009-03-23 | |
redhat-linux操作系统版本发展史 | 1280 | 0 | 0 | 2009-03-23 | |
Linux操作系统各大发行版的官方主页 | 634 | 0 | 0 | 2009-03-23 | |
linux下samba服务的工程文档 | 873 | 0 | 0 | 2009-03-23 | |
linux下apache 2.0.52 配置文件(原稿) | 1305 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。