标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
4月第2周回顾:Linux利好不断 微软补丁惹麻烦 | 907 | 0 | 0 | 2009-03-23 | |
Linux内核源码结构 | 981 | 0 | 0 | 2009-03-23 | |
iptables | 1167 | 0 | 1 | 2009-03-23 | |
Linux下Shell基础知识深入浅出 | 561 | 0 | 0 | 2009-03-23 | |
Linux 字体微调 | 1140 | 0 | 0 | 2009-03-23 | |
Linux下的Apache和PHP安全设置 | 2058 | 0 | 0 | 2009-03-23 | |
Linux Fedora Core 6 Install | 1221 | 0 | 0 | 2009-03-23 | |
?úlinux???′μ?êó£¨×a£? | 1086 | 0 | 0 | 2009-03-23 | |
Linux的目录说明 | 1007 | 0 | 0 | 2009-03-23 | |
羊坊店维护心得 | 1365 | 0 | 0 | 2009-03-23 | |
Ubuntu8.04 Server 全配置指南 (前言) | 849 | 0 | 0 | 2009-03-23 | |
Ubuntu8.04 TFTP Server Configuration | 2334 | 0 | 0 | 2009-03-23 | |
LINUX下的FTP服务器的搭建 | 1071 | 0 | 0 | 2009-03-23 | |
Linux网络管理之六:vsftpd-2.0.5源代码安装和PAM使用 | 1561 | 0 | 1 | 2009-03-23 | |
忘记Linux系统root帐号密码的解决方法 | 784 | 0 | 0 | 2009-03-23 | |
linux安装全过程(虚拟机) | 797 | 0 | 0 | 2009-03-23 | |
三十种Linux操作系统发行版名称含义详解 | 644 | 0 | 0 | 2009-03-23 | |
用busybox做一个迷你Linux | 879 | 0 | 0 | 2009-03-23 | |
入门级学习:linux学习方向和方法浅谈 | 457 | 0 | 0 | 2009-03-23 | |
Linux问题精答《不可不阅读哦》 | 663 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。