标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
[xen]参考资料1 | 565 | 0 | 0 | 2009-04-14 | |
RedHat Linux操作系统入侵 | 1726 | 0 | 0 | 2009-04-13 | |
防止ssh暴力破解软件 denyhosts | 1902 | 0 | 0 | 2009-04-13 | |
如何恢复 Linux 上删除的文件 | 1596 | 0 | 0 | 2009-04-13 | |
linux邮件用法 | 817 | 0 | 0 | 2009-04-12 | |
dhcp服务器探测 | 655 | 0 | 0 | 2009-04-12 | |
全程图解:Centos5.2 操作系统安装 | 2570 | 0 | 0 | 2009-04-12 | |
linux文件I/O操作 | 1404 | 0 | 0 | 2009-04-11 | |
基本进程通信--信号 | 641 | 0 | 0 | 2009-04-11 | |
基本进程通信--管道 | 836 | 0 | 0 | 2009-04-11 | |
shell管道重定向程序的实现 | 1798 | 0 | 0 | 2009-04-10 | |
CVS服务安装设置 | 698 | 0 | 0 | 2009-04-10 | |
linux下dhcp服务基本配置信息 | 713 | 0 | 0 | 2009-04-09 | |
Linux发行版本logo大全 | 898 | 0 | 0 | 2009-04-09 | |
mail结合uuencode快速发送邮件附件 | 1428 | 0 | 0 | 2009-04-09 | |
Linux下源码包安装mysql、apache以及php | 1310 | 0 | 0 | 2009-04-08 | |
rsync 故障记录 | 1819 | 0 | 0 | 2009-04-07 | |
如何使用SNMP来监控Linux服务器 | 1051 | 0 | 0 | 2009-04-07 | |
Linux和Windows在目录上的区别 | 1764 | 0 | 0 | 2009-04-07 | |
xmanager连接linux实现远程桌面 | 1583 | 0 | 0 | 2009-04-06 |
朋友你好!
我刚开始搞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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。