linux shell 流程控制(条件if,循环【for,while】,选择【case】语句实例 --转载

前端之家收集整理的这篇文章主要介绍了linux shell 流程控制(条件if,循环【for,while】,选择【case】语句实例 --转载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

http://www.cnblogs.com/chengmo/archive/2010/10/14/1851434.html

nux shell有一套自己的流程控制语句,其中包括条件语句(if),循环语句(for,while),选择语句(case)。下面我将通过例子介绍下,各个语句使用方法

一、shell条件语句(if用法

if语句结构[if/then/elif/else/fi]

if 条件测试语句

then

action

[elif 条件

action

else

action

]

fi

如果对于:条件测试语句不是很清楚,可以参考:

如:

[chengmo@centos5 ~]$ a=5;if [[ a -gt 4 ]] ;then echo 'ok';fi;                        ok

 

实例:(test.sh)

#!/bin/sh

scores=40;if [[ $scores -gt 90 ]]; then    echo "very good!";elif [[ $scores -gt 80 ]]; then    echo "good!";elif [[ $scores -gt 60 ]]; then    echo "pass!";else    echo "no pass!";fi;

image

 

二、循环语句(for,while,until用法):

  • for循环使用方法(for/do/done)

 1.for … in 语句

for 变量 in seq字符串

do

action

done

说明:seq字符串 只要用空格字符分割,每次for…in 读取时候,就会按顺序将读到值,给前面的变量。

实例(testfor.sh):

#!/bin/sh

for i in $(seq 10); do    echo $i;done;

image

seq 10 产生 1 2 3 。。。。10空格分隔字符串。

2.for((赋值;条件;运算语句))

for((赋值;条件;运算语句))

do

action

done;

实例(testfor2.sh):

#!/bin/sh

for((i=1;i<=10;i++));do    echo $i;done;

image

 

  • while循环使用(while/do/done)

while 条件语句

do

action

done;

实例1:

#!/bin/shi=10;while [[ $i -gt 5 ]];do    echo $i;    ((i--));done;

运行结果:========================

sh testwhile1.sh109876

实例2:(循环读取文件内容:)

#!/bin/sh

while read line;do    echo $line;done < /etc/hosts;

运行结果:===================

sh testwhile2.sh

# Do not remove the following line,or varIoUs programs# that require network functionality will fail.127.0.0.1 centos5 localhost.localdomain localhost

  • until循环语句

语法结构:

until 条件

do

action

done

退出。否则执行action.

实例(testuntil.sh):

#!/bin/sh

a=10;

until [[ $a -lt 0 ]];do

echo $a;

((a—));

done;

结果:

sh testuntil.sh

109876543210

三、shell选择语句(case、select用法

  • case选择语句使用(case/esac)

case $arg in      pattern | sample) # arg in pattern or sample      ;;      pattern1) # arg in pattern1      ;;      *) #default      ;;  esac 

说明:pattern1 是正则表达式,可以用下面字符:

                 *       任意字串                 ?       任意字元                 [abc]   a,b,或c三字元其中之一                 [a-n]   从a到n的任一字元                 |       多重选择

 

#!/bin/sh 

case $1 instart | begin)    echo "start something"      ;;stop | end)    echo "stop something"      ;;*)    echo "Ignorant"      ;;esac

运行结果:======================

 

testcase.sh startstart something

select 变量name  in seq变量

do

    action

done

实例:

#!/bin/sh 

select ch in "begin" "end" "exit"docase $ch in"begin")    echo "start something"      ;;"end")    echo "stop something"      ;;"exit")    echo "exit"      break;    ;;*)    echo "Ignorant"      ;;esacdone;

运行结果:

image

以上是shell的流程控制语句,条件,循环,选择。

猜你在找的Shell相关文章