标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
《Essential Linux Device Drivers》前言(中英文) | 1657 | 0 | 0 | 2009-03-23 | |
《Essential Linux Device Drivers》序(中英文) | 1362 | 0 | 0 | 2009-03-23 | |
6月14日Linux设备驱动开发免费讲座PPT | 989 | 0 | 0 | 2009-03-23 | |
6月14日嵌入式Linux高级开发免费技术讲座(上海) | 961 | 0 | 0 | 2009-03-23 | |
关于《详解》第12.1节按键驱动的进一步阐述 | 986 | 0 | 0 | 2009-03-23 | |
Linux下的C编程实战(四)――“线程”控制与“线程”通信编程 | 1651 | 0 | 0 | 2009-03-23 | |
《Linux设备驱动开发详解》简介 | 1309 | 0 | 0 | 2009-03-23 | |
告《Linux设备驱动开发详解》读者书 | 928 | 0 | 0 | 2009-03-23 | |
Linux下的C编程实战(五)――驱动程序设计 | 848 | 0 | 0 | 2009-03-23 | |
Linux下的C编程实战(三)――进程控制与进程通信编程 | 1312 | 0 | 0 | 2009-03-23 | |
Linux下的C编程实战(二)――文件系统编程 | 955 | 0 | 0 | 2009-03-23 | |
Linux下的C编程实战(一)――开发平台搭建 | 1314 | 0 | 0 | 2009-03-23 | |
《深入浅出Linux设备驱动》第二章 驱动设计的硬件基础(1) | 713 | 0 | 0 | 2009-03-23 | |
《深入浅出Linux设备驱动》第一章 设备驱动概述(3) | 993 | 0 | 0 | 2009-03-23 | |
www.linuxdriver.cn正式启动,欢迎大家在此讨论有关Linux驱动的问题! | 1070 | 0 | 0 | 2009-03-23 | |
《深入浅出Linux设备驱动》前言预告 | 952 | 0 | 0 | 2009-03-23 | |
linux设备驱动开发专业论坛www.linuxdriver.cn诚征斑竹 | 904 | 0 | 0 | 2009-03-23 | |
《深入浅出Linux设备驱动》第一章 设备驱动概述(1) | 733 | 0 | 0 | 2009-03-23 | |
《深入浅出Linux设备驱动》第一章 设备驱动概述(2) | 888 | 0 | 0 | 2009-03-23 | |
深入浅出Linux设备驱动编程--字符设备驱动程序 | 915 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。