标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux检查网络状态脚本 | 1394 | 0 | 0 | 2009-03-23 | |
Linux进程创建,子进程对父进程资源“写时拷贝”的证明 | 1029 | 0 | 0 | 2009-03-23 | |
《Linux设备驱动开发详解》繁体中文版台湾销售情况佳 | 744 | 0 | 0 | 2009-03-23 | |
《Linux设备驱动开发详解》荣获51CTO、中国图书商报、China-pub “2008年度最佳技术图书” | 1197 | 0 | 0 | 2009-03-23 | |
终于在64位Fedora 10里成功安装Gmlive啦 | 941 | 0 | 0 | 2009-03-23 | |
linux2.6.14移植到sbc2410上 | 797 | 0 | 0 | 2009-03-23 | |
Linux 的时区问题 | 1703 | 0 | 0 | 2009-03-23 | |
Linux系统调用--uname函数详解 | 1510 | 0 | 0 | 2009-03-23 | |
linux下实现批量重命名 | 867 | 0 | 0 | 2009-03-23 | |
Linux的磁盘配额 | 436 | 0 | 0 | 2009-03-23 | |
加固系统,从端口做起 | 833 | 0 | 0 | 2009-03-23 | |
no acceptable C compiler found in $PATH | 2291 | 0 | 0 | 2009-03-23 | |
linux Oracle安装 | 1242 | 0 | 0 | 2009-03-23 | |
LINUX--修改IP地址 | 744 | 0 | 0 | 2009-03-23 | |
SSH乱码解决方案 | 808 | 0 | 0 | 2009-03-23 | |
使用Active Directory执行Linux客户端身份验证 | 803 | 0 | 0 | 2009-03-23 | |
认识三大方便的开源 Linux 防火墙生成器 | 2165 | 0 | 0 | 2009-03-23 | |
在RHEL4中配置FTP(vsftp) | 1161 | 0 | 0 | 2009-03-23 | |
linux小知识 | 800 | 0 | 0 | 2009-03-23 | |
Linux系统下介质的挂载 | 590 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。