全部博文(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)
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
crontab 用法 | 837 | 0 | 0 | 2009-03-23 | |
pecksp linux server check require记录 | 690 | 0 | 0 | 2009-03-23 | |
Fedora安装技巧 | 794 | 0 | 0 | 2009-03-23 | |
Linux下配置JBoss自动启动 | 985 | 0 | 0 | 2009-03-23 | |
第六课 今天零下9度【Linux培训实录】 | 1246 | 0 | 0 | 2009-03-23 | |
redhat linux下调整系统时钟 | 999 | 0 | 0 | 2009-03-23 | |
㊋教你改变Linux字体和背景颜色㊋ | 776 | 0 | 0 | 2009-03-23 | |
Linux Keyboard Shortcuts | 814 | 0 | 0 | 2009-03-23 | |
Linux下巧做硬盘分区镜像<转> | 813 | 0 | 0 | 2009-03-23 | |
Linux下巧做硬盘分区镜像<转> | 931 | 0 | 0 | 2009-03-23 | |
Red Hat9实用工具 | 830 | 0 | 0 | 2009-03-23 | |
详细介绍通过ISO文件进行LINUX硬盘安装 | 828 | 0 | 0 | 2009-03-23 | |
How to read Mac .DMG file in Linux or PC | 986 | 0 | 0 | 2009-03-23 | |
linux下安装eva qq configure 错误详解 | 848 | 0 | 0 | 2009-03-23 | |
multi-process debug under Linux | 688 | 0 | 0 | 2009-03-23 | |
linux从字符界面转入图形界面一法 | 726 | 0 | 0 | 2009-03-23 | |
理解Linux系统的日志 | 579 | 0 | 0 | 2009-03-23 | |
产生随机数 | 851 | 0 | 0 | 2009-03-23 | |
徒步天下 制作SLES9 SP3安装教程(含全部截图) | 893 | 0 | 0 | 2009-03-23 | |
afreez收集到的 linux 资源连接 | 607 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。