全部博文(2905)
linux未整理14(77)
linux未整理13(89)
linux未整理12(88)
linux未整理11(81)
linux未整理10(76)
linux未整理9(89)
linux未整理8(84)
linux未整理7(78)
linux未整理6(77)
linux未整理5(85)
linux未整理4(78)
linux未整理3(67)
linux未整理2(73)
linux未整理1(74)
linux未整理(40)
linux基本设置(37)
LINUX源代码(5)
大话LINUX(2)
LINUX心得体会(8)
linux TELNET(5)
linux内核(34)
linux文件磁盘管(109)
linux系统安装(19)
linux认证/考试(40)
linux LDAP(5)
linux权限管理(20)
linux进程管理(21)
linux防火墙(26)
LINUX与WINDOWS(85)
linux APACHE配置(38)
LINUX设备/驱动(41)
linux GRUB(12)
linux安全管理(143)
linux虚拟化(30)
linux DNS(33)
linux网络配置(83)
linux MYSQL管理(38)
linux Oracle管理(28)
linux数据库管理(2)
linux问与答(69)
linux基础入门(128)
linux SHELL(37)
linux NIS(6)
linux DHCP(23)
linux WEB(75)
linux NFS(10)
linux FTP(39)
linux SAMBA(35)
linux SSH(23)
LINUX服务配置(5)
LINUX命令使用(174)
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
ORACLE_SID在Linux平台是否大小敏感?是! | 1351 | 0 | 0 | 2009-03-23 | |
Oracle数据库开发(二) Linux下配置使用ProC | 1828 | 0 | 0 | 2009-03-23 | |
Linux CentOS 4.2安装Oracle 10G R2全过程 | 1452 | 0 | 0 | 2009-03-23 | |
oracle9i for linux AS3安装指南 | 1165 | 0 | 0 | 2009-03-23 | |
Linux下oracle 9i图文安装一 | 1291 | 0 | 0 | 2009-03-23 | |
Linux下oracle 9i图文安装三 | 1290 | 0 | 0 | 2009-03-23 | |
Linux下oracle 9i图文安装二 | 1471 | 0 | 0 | 2009-03-23 | |
Linux下oracle 9i图文安装五 | 1775 | 0 | 0 | 2009-03-23 | |
Linux下oracle 9i图文安装四 | 907 | 0 | 0 | 2009-03-23 | |
Linux下oracle 9i图文安装六完结篇 | 868 | 0 | 0 | 2009-03-23 | |
Linux 下 Oracle 10g 安装“三部曲” | 2756 | 0 | 0 | 2009-03-23 | |
Linux AS4.6 成功安装Oracle9i | 1343 | 0 | 0 | 2009-03-23 | |
RedHatLinux AS3 U3 安装 oracle9204步骤 | 1169 | 0 | 0 | 2009-03-23 | |
Linux下安装Oracle | 1428 | 0 | 0 | 2009-03-23 | |
Linux ORACLE RAC 10201升级10203 | 1044 | 0 | 0 | 2009-03-23 | |
RedHat AS 4.2+Oracle 10.2.0g+Linux Itanium 64 | 1538 | 0 | 0 | 2009-03-23 | |
oracle 数据库由Linux平台向Windows平台迁移 | 1430 | 0 | 0 | 2009-03-23 | |
Linux下oracle 9i图文安装一 | 831 | 0 | 0 | 2009-03-23 | |
linux as4下安装oracle10g终结版 | 1459 | 0 | 0 | 2009-03-23 | |
linux下完全删除Oracle | 1242 | 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语句,可要是不能这样
我要实现程序跳转(也就是查了以个分数等级后,不退出程序还能继续查询第二个)
该用什么方法实现。
小弟在此先行叩谢了。