标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux上两种rootkits检测工具: Rootkit Hunter和Chkrootkit | 1504 | 0 | 0 | 2009-03-23 | |
记录登录后使用命令的脚本 | 848 | 0 | 0 | 2009-03-23 | |
RHEL4升级2.6.19内核+L7补丁彻底封QQ,MSN | 800 | 0 | 0 | 2009-03-23 | |
编译参数2007-12.17更新 | 716 | 0 | 0 | 2009-03-23 | |
lvs 路由模式下后端的realserver是windows该如何处理arp问题 | 717 | 0 | 0 | 2009-03-23 | |
shell中以往时间的表示方法 | 1283 | 0 | 0 | 2009-03-23 | |
sed的使用 | 422 | 0 | 0 | 2009-03-23 | |
mount的使用 | 1162 | 0 | 0 | 2009-03-23 | |
实现lighttpd-1.5+mod_proxy_core+多 Fastcgi backends 解析PHP负载平衡 | 682 | 0 | 0 | 2009-03-23 | |
新建swap分区 | 913 | 0 | 0 | 2009-03-23 | |
Linux 系统的单用户模式、修复模式、跨控制台登录在系统修复中的运用 | 478 | 0 | 0 | 2009-03-23 | |
ipvsadm命令参考 | 337 | 0 | 0 | 2009-03-23 | |
如何设置LVS,让Director能将来自同一个Client的请求发给同一个RealServer | 895 | 0 | 0 | 2009-03-23 | |
proftpd的配置 | 1147 | 0 | 0 | 2009-03-23 | |
2008Apache2.2.3+PHP5.2.0+MySQL5.0.27+openssl0.98d安装笔记 | 843 | 0 | 0 | 2009-03-23 | |
shell基础 | 551 | 0 | 0 | 2009-03-23 | |
更改网卡的工作方式 | 616 | 0 | 0 | 2009-03-23 | |
PHP & memcached | 459 | 0 | 0 | 2009-03-23 | |
CENTOS4.3 安装apache2.2.2+mysql5.0.22+php5.1.4+memcache+ZendOptimizer3.0 | 544 | 0 | 0 | 2009-03-23 | |
用sarg分析squid日志 | 808 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。