标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
RHCT和RHCE考试中必考的内容 | 1020 | 0 | 0 | 2009-03-23 | |
linux下mysql 5.x得到root密码后的另外一种利用方式 | 727 | 0 | 0 | 2009-03-23 | |
Linux考前必读:RHCE考试准备大方向 | 1577 | 0 | 0 | 2009-03-23 | |
挂载LINUX的网卡驱动----英特尔主板 | 990 | 0 | 0 | 2009-03-23 | |
Linux下root密码恢复 | 748 | 0 | 0 | 2009-03-23 | |
Linux 技巧 | 675 | 0 | 0 | 2009-03-23 | |
linux基礎資料 | 462 | 0 | 0 | 2009-03-23 | |
學習linux的建議 | 244 | 0 | 0 | 2009-03-23 | |
菜鳥學linux | 386 | 0 | 0 | 2009-03-23 | |
[原创]手动配置Ubuntu Linux系列2-网卡的静态IP地址 | 816 | 0 | 0 | 2009-03-23 | |
[原创]手动配置Ubuntu Linux系列1-DHCP客户端 | 1136 | 0 | 0 | 2009-03-23 | |
[原创]手动配置Ubuntu Linux系列4-指定DNS服务器地址 | 826 | 0 | 0 | 2009-03-23 | |
RedHat AS 4安装详解-Linux学习日记 | 859 | 0 | 0 | 2009-03-23 | |
linux dns 设置 小知识 | 855 | 0 | 0 | 2009-03-23 | |
Linux小点滴 | 358 | 0 | 0 | 2009-03-23 | |
install vmware tools in fedora7.0 linux(install successly) | 2476 | 0 | 0 | 2009-03-23 | |
从零开始学LINUX(3)之“一切Linux命令都是纸老虎” | 788 | 0 | 0 | 2009-03-23 | |
在fedora linux中,wine 成功安装手记 | 1395 | 0 | 0 | 2009-03-23 | |
LINUX与XP双系统共存直接删除LIUNX引发的问题 | 880 | 0 | 0 | 2009-03-23 | |
linux技巧随笔 | 417 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。