全部博文(2905)
linux未整理14(77)
linux未整理13(89)
linux未整理12(88)
linux未整理11(81)
linux未整理10(76)
linux未整理9(89)
linux未整理8(84)
linux未整理7(78)
linux未整理6(77)
linux未整理5(85)
linux未整理4(78)
linux未整理3(67)
linux未整理2(73)
linux未整理1(74)
linux未整理(40)
linux基本设置(37)
LINUX源代码(5)
大话LINUX(2)
LINUX心得体会(8)
linux TELNET(5)
linux内核(34)
linux文件磁盘管(109)
linux系统安装(19)
linux认证/考试(40)
linux LDAP(5)
linux权限管理(20)
linux进程管理(21)
linux防火墙(26)
LINUX与WINDOWS(85)
linux APACHE配置(38)
LINUX设备/驱动(41)
linux GRUB(12)
linux安全管理(143)
linux虚拟化(30)
linux DNS(33)
linux网络配置(83)
linux MYSQL管理(38)
linux Oracle管理(28)
linux数据库管理(2)
linux问与答(69)
linux基础入门(128)
linux SHELL(37)
linux NIS(6)
linux DHCP(23)
linux WEB(75)
linux NFS(10)
linux FTP(39)
linux SAMBA(35)
linux SSH(23)
LINUX服务配置(5)
LINUX命令使用(174)
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
发现大量的TIME_WAIT解决办法 | 2223 | 0 | 0 | 2009-03-23 | |
red hat 9 ?2ì??·óéoíiptables nat | 814 | 0 | 0 | 2009-03-23 | |
想把linux学精,谁给推荐一下好的教材 | 588 | 0 | 0 | 2009-03-23 | |
gosip FAQ | 712 | 0 | 0 | 2009-03-23 | |
Linux 文件和目录管理之列出、删除、复制、移动及改名 | 697 | 0 | 0 | 2009-03-23 | |
Linux全攻略--用户和组管理 | 912 | 0 | 0 | 2009-03-23 | |
Linux系统的lib文件[翻译][转] | 1083 | 0 | 0 | 2009-03-23 | |
Linux全攻略--软件包管理 | 1168 | 0 | 0 | 2009-03-23 | |
展望08年之后IT业发展 | 634 | 0 | 0 | 2009-03-23 | |
LVS的使用 | 709 | 0 | 0 | 2009-03-23 | |
Linux环境下配置ADSL详解 | 729 | 0 | 0 | 2009-03-23 | |
摸清Linux日志处理的来龙去脉 | 693 | 0 | 0 | 2009-03-23 | |
Linux 操作系统启动流程以及trouble shooting思路 | 1091 | 0 | 0 | 2009-03-23 | |
远程管理Linux服务器经验谈 | 865 | 0 | 0 | 2009-03-23 | |
linux根目錄詳解 | 3956 | 0 | 0 | 2009-03-23 | |
Linux RHEL4下jdk1.6的安装(经测试,已成功。。。) | 992 | 0 | 0 | 2009-03-23 | |
Linux用户管理详解 | 967 | 0 | 0 | 2009-03-23 | |
linux文字模式下的系统关闭 | 865 | 0 | 0 | 2009-03-23 | |
Linux下C语言编程--文件的操作 | 731 | 0 | 0 | 2009-03-23 | |
配置linux-adsl 过程 | 690 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。