标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
修改的匈牙利命名法 | 834 | 0 | 0 | 2009-03-23 | |
Ubuntu---LINUX中能取代windows的产品 | 964 | 0 | 0 | 2009-03-23 | |
(ZT)Eliminate ^M character using vi(Linux) | 958 | 0 | 0 | 2009-03-23 | |
关闭linux中的响铃 | 667 | 0 | 0 | 2009-03-23 | |
使用共享文件夹 | 1854 | 0 | 0 | 2009-03-23 | |
在虚拟机(linux)中安装VMwareTools工具 | 980 | 0 | 0 | 2009-03-23 | |
Ubuntu带给你5个不一样的体验-z | 1291 | 0 | 0 | 2009-03-23 | |
Ubuntu Linux 用户群体突破800万-z | 735 | 0 | 0 | 2009-03-23 | |
该添加点东西了 | 706 | 0 | 0 | 2009-03-23 | |
使用sudo来赋予普通用户root的权限 | 1335 | 0 | 0 | 2009-03-23 | |
红旗Linux官方测试题——Linux系统管理 | 2315 | 0 | 1 | 2009-03-23 | |
Linux服务笔记之五:NFS服务 | 1915 | 0 | 0 | 2009-03-23 | |
Linux学习月征文《触电linux》 | 671 | 0 | 0 | 2009-03-23 | |
linux下Umail服务的停止 | 1274 | 0 | 0 | 2009-03-23 | |
定制CentOS 5安装光盘 | 1299 | 0 | 0 | 2009-03-23 | |
在linux操作系统下注销、关机、重启的简单命令 | 812 | 0 | 0 | 2009-03-23 | |
美国沃尔玛超市出售200美元的Linux PC | 697 | 0 | 0 | 2009-03-23 | |
在Linux操作系统下创建锁文件。 | 775 | 0 | 0 | 2009-03-23 | |
Linux环境下的DNS服务器架设 | 653 | 0 | 0 | 2009-03-23 | |
linux下shell的工作原理。 | 1071 | 0 | 1 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。