标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
FTP命令大全及其应用 | 350 | 0 | 0 | 2009-03-23 | |
linux下载http | 1511 | 0 | 0 | 2009-03-23 | |
优化Linux系统资源和加快启动速度的方法 | 1206 | 0 | 0 | 2009-03-23 | |
X86_64和i386有什么区别吗? | 2066 | 0 | 0 | 2009-03-23 | |
Linux系统的相关专业术语发音 | 1796 | 0 | 0 | 2009-03-23 | |
linux下J2EE开发环境详细配置 | 1059 | 0 | 0 | 2009-03-23 | |
黑客帝国:有人在Linux下用字符看视频 | 748 | 0 | 0 | 2009-03-23 | |
linux 下应用putty软件修改中文字体 | 810 | 0 | 0 | 2009-03-23 | |
linux ”我的草稿“ | 731 | 0 | 0 | 2009-03-23 | |
LINUX 网卡驱动下载 | 1323 | 0 | 0 | 2009-03-23 | |
[Ubuntu 7.10]3D-Desktop:超酷的Linux 3D桌面切换器 | 1641 | 0 | 0 | 2009-03-23 | |
几个查看进程及日志的命令 | 1782 | 0 | 0 | 2009-03-23 | |
linux文件系统基础 | 331 | 0 | 0 | 2009-03-23 | |
需要在linux中整理磁盘碎片吗 | 871 | 0 | 0 | 2009-03-23 | |
堪称Linux系统管理的圣经:《linux系统技术手册》 | 1078 | 0 | 0 | 2009-03-23 | |
4月第2周回顾:Linux利好不断 微软补丁惹麻烦 | 907 | 0 | 0 | 2009-03-23 | |
Linux内核源码结构 | 981 | 0 | 0 | 2009-03-23 | |
iptables | 1166 | 0 | 1 | 2009-03-23 | |
Linux下Shell基础知识深入浅出 | 561 | 0 | 0 | 2009-03-23 | |
Linux 字体微调 | 1138 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。