标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
linux计划任务 | 897 | 0 | 0 | 2009-03-23 | |
学习Linux必备vi/vim键盘图 | 513 | 0 | 0 | 2009-03-23 | |
Windows和Linux将被抹杀?俄罗斯程序员幽灵操作系统 | 686 | 0 | 0 | 2009-03-23 | |
Linux上运行Windows程序 | 432 | 0 | 0 | 2009-03-23 | |
解决LINUX下无法自动挂载NTFS文件格式的移动硬盘访问 | 687 | 0 | 0 | 2009-03-23 | |
3??§??è?o??§?°linux | 2007 | 0 | 0 | 2009-03-23 | |
VirtualBox使用技巧 | 2073 | 0 | 0 | 2009-03-23 | |
linux diff 命令详解 | 1341 | 0 | 0 | 2009-03-23 | |
linux下简单的自适应CPU利用率的控制(Python实现) | 1213 | 0 | 0 | 2009-03-23 | |
iscsi在linux上的配置及使用 | 847 | 0 | 0 | 2009-03-23 | |
在Linux下获取全国各地IP地址段方法 | 808 | 0 | 1 | 2009-03-23 | |
linux下配置rsync服务器和实时同步 | 1699 | 0 | 0 | 2009-03-23 | |
LVM (逻辑卷管理器) 是什么 | 587 | 0 | 0 | 2009-03-23 | |
學linux,從空杯開始。 | 707 | 0 | 0 | 2009-03-23 | |
快来使用CactiEZ中文版 | 1155 | 0 | 0 | 2009-03-23 | |
linux中sendmail+squirrelmail配置 | 1230 | 0 | 0 | 2009-03-23 | |
linux的未来发展现状 | 859 | 0 | 0 | 2009-03-23 | |
Linux下用dump实现备份和还原 | 576 | 0 | 0 | 2009-03-23 | |
Windows 到 Linux 之旅: 第 8 部分. 备份与恢复 | 490 | 0 | 0 | 2009-03-23 | |
ibm系列文章 --> Windows 到 Linux 之旅 | 931 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。