标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
GUN cp 与 tar 拷贝文件速度 比较 | 1772 | 0 | 0 | 2009-05-16 | |
详解linux系列之samba的安装及配置 | 1028 | 0 | 0 | 2009-05-16 | |
详解linux系列之网络服务DHCP的安装及配置 | 927 | 0 | 0 | 2009-05-16 | |
linux 安全技巧 | 1237 | 0 | 0 | 2009-05-15 | |
设置GRUB密码及重置密码 | 1849 | 0 | 1 | 2009-05-15 | |
Redhat Enterprise server linux 5安装Telnet | 2004 | 0 | 0 | 2009-05-15 | |
linux 安全技巧 | 704 | 0 | 0 | 2009-05-14 | |
Linux发行版争相发布 开源世界好不热闹 | 1483 | 0 | 0 | 2009-05-14 | |
详解linux系列之FTP的安装及配置 | 1862 | 0 | 0 | 2009-05-14 | |
redhat linux忘记登陆密码之解决办法 | 1696 | 0 | 0 | 2009-05-13 | |
iconv---编码转换 | 659 | 0 | 0 | 2009-05-13 | |
怎么样熟悉linux内存管理 | 1319 | 0 | 0 | 2009-05-13 | |
LINUX VMWare-TOOLS的安装 | 580 | 0 | 0 | 2009-05-12 | |
Rhel5 | 604 | 0 | 0 | 2009-05-12 | |
iptables | 669 | 0 | 0 | 2009-05-12 | |
Linux系统下任务作业自动化执行工具 | 881 | 0 | 0 | 2009-05-11 | |
详解linux系列之字符界面安装apache及配置 | 867 | 0 | 0 | 2009-05-11 | |
[RHEL5企业级Linux服务攻略]--第11季 NIS服务全攻略 | 704 | 0 | 0 | 2009-05-11 | |
Linux中安装.rpm、.tar和.tar.gz或.tgz包 | 1204 | 0 | 0 | 2009-05-10 | |
ubuntu8.04+skyeye1.2.4搭建linux2.6.24+s3c2410的模拟arm-linux开发环境 | 1046 | 0 | 0 | 2009-05-10 |
朋友你好!
我刚开始搞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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。