标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux下配置DHCP和NIS服务器 | 1211 | 0 | 0 | 2009-03-23 | |
linux 修改主机名 修改ip | 1806 | 0 | 0 | 2009-03-23 | |
linux之忘记密码及修改fstab文件造成不能登录问题 | 843 | 0 | 0 | 2009-03-23 | |
Linux全攻略--yum服务器配置 | 888 | 0 | 0 | 2009-03-23 | |
[RHEL5企业级Linux服务攻略]--第1季 Linux服务器的搭建与测试 | 1146 | 0 | 0 | 2009-03-23 | |
Linux的基本安装 | 1337 | 0 | 0 | 2009-03-23 | |
*.src.rpm包安装 | 1495 | 0 | 0 | 2009-03-23 | |
黑客攻击的策略,工具和操作步骤 | 1231 | 0 | 0 | 2009-03-23 | |
linux m4命令 | 2782 | 0 | 0 | 2009-03-23 | |
ubuntu装电驴 | 1419 | 0 | 0 | 2009-03-23 | |
Red Hat Enterprise Linux 4 服务器性能优化 | 1240 | 0 | 0 | 2009-03-23 | |
RHCE课程-RH033Linux基础笔记八-文件强制位冒险位、ACL访问控制列表 | 448 | 0 | 0 | 2009-03-23 | |
Linux LVM管理 | 985 | 0 | 0 | 2009-03-23 | |
RedHatAS4.0-网络基础 | 446 | 0 | 0 | 2009-03-23 | |
RedHatAS4.0-RAID技术 | 829 | 0 | 0 | 2009-03-23 | |
RedHatAS4.0-管理磁盘文件系统 | 691 | 0 | 0 | 2009-03-23 | |
RedHatAS4.0-DHCP技术 | 725 | 0 | 0 | 2009-03-23 | |
RedHatAS4.0-域名系统 | 1114 | 0 | 0 | 2009-03-23 | |
RedHatAS4.0-FTP技术 | 790 | 0 | 0 | 2009-03-23 | |
RedHatAS4.0-SAMBA技术 | 725 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。