标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux下开启telnet | 1598 | 0 | 0 | 2009-03-23 | |
将Linux加入Windows域 | 798 | 0 | 0 | 2009-03-23 | |
Linux与Windows双系统下的Grub引导管理器安装——boot.ini与menu.lst的例解 | 1189 | 0 | 0 | 2009-03-23 | |
Linux DNS包的卸载和安装 | 983 | 0 | 0 | 2009-03-23 | |
安装HTTPD时遇到的问题 | 876 | 0 | 0 | 2009-03-23 | |
FTP命令大全及其应用 | 352 | 0 | 0 | 2009-03-23 | |
linux下载http | 1512 | 0 | 0 | 2009-03-23 | |
优化Linux系统资源和加快启动速度的方法 | 1206 | 0 | 0 | 2009-03-23 | |
X86_64和i386有什么区别吗? | 2067 | 0 | 0 | 2009-03-23 | |
Linux系统的相关专业术语发音 | 1796 | 0 | 0 | 2009-03-23 | |
linux下J2EE开发环境详细配置 | 1060 | 0 | 0 | 2009-03-23 | |
黑客帝国:有人在Linux下用字符看视频 | 748 | 0 | 0 | 2009-03-23 | |
linux 下应用putty软件修改中文字体 | 810 | 0 | 0 | 2009-03-23 | |
linux ”我的草稿“ | 732 | 0 | 0 | 2009-03-23 | |
LINUX 网卡驱动下载 | 1324 | 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中整理磁盘碎片吗 | 872 | 0 | 0 | 2009-03-23 | |
堪称Linux系统管理的圣经:《linux系统技术手册》 | 1078 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。