免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 602 | 回复: 0
打印 上一主题 下一主题

第四章 控制流结构 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-22 18:06 |只看该作者 |倒序浏览
第四章
控制流结构
   1. 控制结构
   2. if then else语句
   3. case语句
   4. for 语句
   5. until语句
   6. while循环
   7. break 控制
   8. continue控制
在这章节我样人非常的了解和应用的是什么是控制流结构?下面开始讲解;
1.  流控制是什么?
      顾名思义流俗称为水流,水往下流的时候不给它加以控制,它或许会淹没农田,或是非常肆虐,shell中的流控制和它非常相似,比如,创建一个文件,然后移动,然后再删除,这里会出现什么呢?是正确还是错误都不的而知,如果给它加以控制呢?错误了就再去执行正确的,正确了回显一些信息,这是不是很有趣呢?那么控制的语句有哪些呢?
2.  if 语句
   2.1 格式
if 条件1  如果条件1为真
      then   那么执行命令1
          command 1
     elif 条件2  如果条件2为真
       then    那么执行命令2
           command 2
      else   命令1,2都不成立,就执行命令3
          command 3
    fi         结束
   
  2.2  举例
      
#!/bin/bash
#integer heihei
clear
echo -e "\t\tPlease input two integer"
echo -n "Please input frist integer number : "
read frist
echo -n "Please input second ingeger number : "
read second
if [ $frist -eq $second ]
  then
     echo "$frist and $second is equel !"
elif [ $frist -lt $second ]
  then
     echo "$frist is litter than $second !"
else
    echo "$frist is greate than $second !"
fi
     演示;
                Please input two integer
Please input frist integer number : 2
Please input second ingeger number : 3
2 is litter than 3 !
[root@server shell]#
也可简化成只有if then else;
   
#!/bin/bash
clear
echo -e "\t\tPlease answer the question use \"y/n\", thanks!"
echo -n "hello,baby could you help me learn English ?: "
read answer
if [ $answer = y ]
  then
  echo "Thank you so much !"
else
  echo "Fuck you!"
fi
      应用脚本;
                Please answer the question use "y/n", thanks!
hello,baby could you help me learn English ?: y
Thank you so much !
  3. case 语句
       寓义:
          case语句多选择语句,可以用case语句匹配一个值与一个模式,如果成功,则执行相应的命令.也可以用多个elif来实现,但是用case这个语句更为方便,
        格式:
格式:
          case in
           模式1)
             命令1
               ;;
            模式2)
              命令2
              命令3
                ;;
              esac
     case取值后面必须跟 in ,每一模式必须以右括号")"结束,取值可以为变量或常数,匹配发现取值符全某一模式后,其间所有命令开始执行直至;;.模式匹配符*代表任意字符,?表示任意单个字符,[..]表示类或范围中任意字符.
      举例;
         前言;
             由于本人英语十分"良好",故单词或语法之"优",还望你们多多见谅,如果哪位"英功 ",十分不好者,可速速与我联系,我要拜师!
      这个是用if语句构造的case句型,十分臃肿,而且不美观;
  
#!/bin/bash
echo -n "Please input a number in : "
read number
if [ -z $number ] || [ "$number" = "" ];then
   echo "You don't input any number @_@,try again "
elif [ "$number" -eq "1" ];then
   echo "Hello,you select 1"
   echo "Yor workdirectory is $PWD"
elif [ "$number" -eq "2" ];then
   echo "Hello,you select 2"
   echo "Now time is `date +%y/%m/%d` "
elif [ "$number" -eq "3" ];then
   echo "Hello,you select 3"
   echo "you logon username is $USERNAME"
else
   echo "sorry , you input number is not in ,please try again!"
fi   运行脚本,
   
[root@server shell]# ./ifvscase.sh  
Please input a number in : 1   #输入1
Hello,you select 1          #你选择的是1
Yor workdirectory is "/root/shell"  #命令
[root@server shell]# ./ifvscase.sh
Please input a number in : 2    #输入2
Hello,you select 2
Now time is "06/05/19"
[root@server shell]# ./ifvscase.sh
Please input a number in : 3
Hello,you select 3
you logon username is "root"
[root@server shell]# ./ifvscase.sh
Please input a number in :    #不输
You don't input any number @_@,try again
[root@server shell]# ./ifvscase.sh
Please input a number in : 500  #输入超过3
sorry , you input number is not in ,please try again!
呵呵..再来与用case写的脚本比较一下;
  
#!/bin/bash
echo -n "hello,please input any number,but in : "
read number
case $number in
   1)
   echo "you select 1";
   echo "`tail +32 /etc/passwd`"
   ;;
   2)
   echo "you select 2";
echo `date +%y/%m/%d`
   ;;
   3)
   echo "you select 3";
   echo you is main
   ;;
   *)
    echo "`basename $0`,you input not in between 1 and 3" >&2
    exit;
    ;;
esac
够简洁明了吧;-_-!我喜欢这样的.
     运行一下,
   
[root@server shell]# ./case.sh  
hello,please input any number,but in : 1
you select 1
ceo:x:505:505::/home/ceo:/bin/bash
worker:x:506:506::/home/worker:/bin/bash
[root@server shell]# ./case.sh
hello,please input any number,but in : 2
you select 2
06/05/19
[root@server shell]# ./case.sh
hello,please input any number,but in : 3
you select 3
you is main
[root@server shell]# ./case.sh  
hello,please input any number,but in : 6
case.sh,you input not in between 1 and 3
ok....if和case语句讲完了..现在我的脖子可真酸啊.小板凳太低了.手打字也很疲倦啊..如果我真的能帮助你了解一些你所不知道的东西的话,给我留一句话就好,可以吗?如果我还有做的不足的地方,你也可以说出来,以便我更好的写出你所满意的篇幅啊..呵呵-_-,
   4. for语句
            很不好意思..由于个人的原因.竟二天没来写下文..我有罪.我对不起人民.我对不党..@_@我们继续;
    4.1 格式
for 变量名 in 列表
        do
            命令1
            命令2
        done
     4.2 适用范围:
当变量值在列表里,for循环执行一次所有命令,使用变量名访问列表中取值.命令可为任何有效的shell命令和语句.变量名为任何单词.In列表用法是可选的.如果不用它.for循环使用命令行的位置参数.in列表可以包含替换,字符串和文件名.
     4.3 for循环举例
#!/bin/bash
for user in lizhu tanyumei zhuxiaoling
do
echo "${user}"
done
~      
             与这相比较一下.看结果有什么不同;
  
#!/bin/bash
for user in "lizhu tanyumei zhuxiaoling"
do
echo "${user}"
done
~     
   运行..
  
[feng@server shell]$ ./for.sh    #不
lizhu                            #带
tanyumei                         #引
zhuxiaoling                      #号  
[feng@server shell]$ ./for1.sh  
lizhu tanyumei zhuxiaoling  #带引号
[feng@server shell]$
另一个需要注意的就是for命令是以空格为分隔的.试比较如下;
[feng@server shell]$ cat list.txt   #文件list
lin                                 #\.txt的内
feng                                #容
[feng@server shell]$ cat for2.sh  #脚本for2.sh
#!/bin/bash                      #的内容
for list in `cat list\.txt`
do
echo $list
done
[feng@server shell]$ ./for2.sh   #运行结果如下:
lin
feng
     再看下面我们把list.txt加入二个字段;
   
[feng@server shell]$ cat list.txt
lin he ha
feng
[feng@server shell]$ ./for2.sh
lin
he
ha
feng
[feng@server shell]$
是以空格为分隔符的..需注意;!
    4.4 until循环
       4.4.1 格式
              until 条件
                  do
                  命令1
                  命令2
                 .......
                   done
      4.4.2 注意:
             条件可为任意测试条件,测试发生生在循环尾部,因此循环至少执行一次.
      4.4.3 举例
#!/bin/bash
part="/sda2"
look_out=`df|grep "$part"|awk '{print $5}'|sed `s///g``
echo $look_out
until [ $look_out -gt 90 ]
do
echo "Filesystem $part is nearly full"|mail root
look_out=`df|grep "$part"|awk '{print $5}'|sed `s///g``
sleep 3600
done
~     
     4.5 while
      4.5.1 格式
           while 命令
             do
                命令1
                ...2
               .......
             done
      4.5.2 注意
           在while和do之间虽然通常只用一个命令,但是可以放几个命令,命令通常为测试条件.
      4.5.3 举例
            
[root@server shell]# cat while.sh
#!/bin/bash
echo "+D break out"
while echo -n "Please keyin you like best filmes :";read file
do
  echo "yeah,${file} is a good filmes!"
done
   例二;
     
[root@server shell]# cat while1.sh
#!/bin/bash
while read line
do
  echo $line
done
4.6  break and continue
   break [n]
    退出循环
    如果是在一个内设循环里,可以指定n来跳出的循环个数.
   continue
    跳出循环步
  注:continue命令类似break命令,重要一点它不会跳出循环,只是跳过这个循环步.
  简单举例;
#!/bin/bash
while :
do
echo -n "Please keyin a number "
read number
case $number in
  [1-5])
    echo "You input number is $number."
    ;;
    *)
    echo "You input number is between 1 and 5"
    break
    ;;
   esac
done
  continue
   
[root@server shell]# cat continue.sh
#!/bin/bash
while :
  do
echo -n "Please keyin 1-5 number : "
read number
case $number in
  [1-5])
   echo "You keyin number is : $number"
  ;;
  *)
   echo "You keyin is not between 1 and 5!"
   echo -n "You will continue or exit?please answer with :  "
   read answer
   case $answer in
   y|Y|Yes|yes)
     echo "You seclet $answer,this program is will continue!"
     continue
      ;;
    *)
    echo "You select is exit.bye!"
    exit;
    ;;
esac
esac
done

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/18861/showart_116438.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP