标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux下磁盘配额管理 | 788 | 0 | 0 | 2009-03-23 | |
基于ARM的嵌入式Linux移植真实体验(3)――操作系统 | 936 | 0 | 0 | 2009-03-23 | |
基于ARM的嵌入式Linux移植真实体验(1)――基本概念 | 1198 | 0 | 0 | 2009-03-23 | |
RHCE课程-RH131Linux管理笔记四-Linux的计划任务 | 1099 | 0 | 0 | 2009-03-23 | |
Linux/Freebsd下时间转化 | 923 | 0 | 0 | 2009-03-23 | |
中为linux增加硬盘 | 789 | 0 | 0 | 2009-03-23 | |
linux命令 | 683 | 0 | 0 | 2009-03-23 | |
《Essential Linux Device Drivers》第3章(下) | 1001 | 0 | 0 | 2009-03-23 | |
《Essential Linux Device Drivers》第2章(下) | 1107 | 0 | 0 | 2009-03-23 | |
linux 挂载移动硬盘的相关资料 | 1759 | 0 | 0 | 2009-03-23 | |
重装Linux也不用重新配置的方法 | 1265 | 0 | 0 | 2009-03-23 | |
ARM Linux Booting Sequence (1) | 1159 | 0 | 0 | 2009-03-23 | |
Booting ARM Linux | 857 | 0 | 0 | 2009-03-23 | |
Linux内核源代码的阅读和工具介绍 | 1711 | 0 | 0 | 2009-03-23 | |
长篇连载--arm linux演艺(1 to 11) | 847 | 0 | 0 | 2009-03-23 | |
Linux下samba源码安装(非RPM包) | 1569 | 0 | 0 | 2009-03-23 | |
ArmLinux BOOTLOADER全程详解(转载) | 758 | 0 | 0 | 2009-03-23 | |
[RHEL5企业级Linux服务攻略]--第2季 Samba服务全攻略 | 971 | 0 | 0 | 2009-03-23 | |
源码安装vsftp2.0.7 | 955 | 0 | 0 | 2009-03-23 | |
安装MySQL-LINUX | 1623 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。