标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Linux桌面版横评:三、Fedora 7 Live | 866 | 0 | 0 | 2009-03-23 | |
Linux桌面版横评:五、Ubuntu 7.04 | 1358 | 0 | 0 | 2009-03-23 | |
Linux桌面版横评:四、SuSE Linux Enterprise Desktop 10 SP1 | 1254 | 0 | 0 | 2009-03-23 | |
Linux桌面版横评:七、共创桌面Linux 2005 SP1 | 1129 | 0 | 0 | 2009-03-23 | |
Linux桌面版横评:六、红旗桌面5.0 | 1060 | 0 | 0 | 2009-03-23 | |
Linux桌面版横评:十、Vector Linux 5.8 SOHO Final | 1490 | 0 | 0 | 2009-03-23 | |
Linux桌面版横评:八、中标普华桌面Linux 3.0.1 | 749 | 0 | 0 | 2009-03-23 | |
Linux桌面版横评:十一、总评 | 741 | 0 | 0 | 2009-03-23 | |
RPM软件包命令的使用 | 1645 | 0 | 0 | 2009-03-23 | |
LINUX的文件属性与目录配置 | 749 | 0 | 0 | 2009-03-23 | |
SNMPM 配置 [linux windows solaris] | 770 | 0 | 0 | 2009-03-23 | |
如何安装.src.rpm软件包 | 758 | 0 | 0 | 2009-03-23 | |
LINUX启动过程的故障排除 | 688 | 0 | 0 | 2009-03-23 | |
linux基本命令手册 | 1600 | 0 | 0 | 2009-03-23 | |
Debian下的Subverson安装完整版 | 1818 | 0 | 0 | 2009-03-23 | |
Linux 网络安装 | 1307 | 0 | 0 | 2009-03-23 | |
各种系统下vmware tools的安装 | 844 | 0 | 0 | 2009-03-23 | |
VMware-server 安装 Fedora 5 须知 | 1503 | 0 | 0 | 2009-03-23 | |
Redhat(Linux)上的JBoss管理配置 | 953 | 0 | 0 | 2009-03-23 | |
LINUX文件的压缩与打包 | 673 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。