我是靠谱客的博主 虚心棒球,这篇文章主要介绍Linux Shell命令(四) 循环语句 函数,现在分享给大家,希望可以做个参考。

for循环


与其他编程语言类似,Shell支持for循环。

for循环一般格式为:

复制代码
1
2
3
4
5
6
7
for 变量 in 列表 do command1 command2 ... commandN done

列表是一组值(数字、字符串等)组成的序列,每个值通过空格分隔。每循环一次,就将列表中的下一个值赋给变量。

in 列表是可选的,如果不用它,for 循环使用命令行的位置参数。

范例1

顺序输出当前列表中的数字:

复制代码
1
2
3
4
5
#!/bin/bash for loop in 1 2 3 4 5 do echo "The value is: $loop" done

运行结果:

复制代码
1
2
3
4
5
The value is: 1 The value is: 2 The value is: 3 The value is: 4 The value is: 5

范例2

顺序输出字符串中的字符:

复制代码
1
2
3
4
5
#!/bin/bash for str in This is a string do echo $str done

运行结果:

复制代码
1
2
3
4
This is a string

while循环


while循环用于不断执行一系列命令,也用于从输入文件中读取数据;命令通常为测试条件。其格式为:

复制代码
1
2
3
4
while command do Statement(s) to be executed if command is true done

命令执行完毕,控制返回循环顶部,从头开始直至测试条件为假。

范例1

以下是一个基本的while循环,测试条件是:如果COUNTER小于5,那么返回 true。COUNTER从0开始,每次循环处理时,COUNTER加1。运行上述脚本,返回数字1到5,然后终止。

复制代码
1
2
3
4
5
6
7
#!/bin/bash COUNTER=0 while [ $COUNTER -lt 5 ] do COUNTER=`expr $COUNTER + 1` echo $COUNTER done

运行脚本,输出:

复制代码
1
2
3
4
5
1 2 3 4 5

范例2

while循环可用于读取键盘信息。下面的例子中,输入信息被设置为变量FILM,按结束循环。

复制代码
1
2
3
4
5
6
7
#!/bin/bash echo 'type <CTRL-D> to terminate' echo -n 'enter your most liked film: ' while read FILM do echo "Yeah! great film the $FILM" done

运行脚本,输出类似下面:

复制代码
1
2
3
type <CTRL-D> to terminate enter your most liked film: Sound of Music Yeah! great film the Sound of Music

until循环


until循环执行一系列命令直至条件为true时停止。until循环与while循环在处理方式上刚好相反。一般while循环优于until循环,但在某些时候,也只是极少数情况下,until循环更加有用。

until循环格式为:

复制代码
1
2
3
4
until command do Statement(s) to be executed until command is true done

command一般为条件表达式,如果返回值为false,则继续执行循环体内的语句,否则跳出循环。

范例1

使用 until 命令输出 0 ~ 4 的数字:

复制代码
1
2
3
4
5
6
7
#!/bin/bash a=0 until [ ! $a -lt 5 ] do echo $a a=`expr $a + 1` done

运行结果:

复制代码
1
2
3
4
5
0 1 2 3 4

用break跳出循环


在循环过程中,有时候需要在未达到循环结束条件时强制跳出循环,像大多数编程语言一样,Shell也使用break来跳出循环。

break命令允许跳出所有循环(终止执行后面的所有循环)。

范例1

下面的例子中,脚本进入死循环直至用户输入数字大于5。要跳出这个循环,返回到shell提示符下,就要使用break命令。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash while : do echo -n "Input a number between 1 to 5: " read aNum case $aNum in 1|2|3|4|5) echo "Your number is $aNum!" ;; *) echo "You do not select a number between 1 to 5, game is over!" break ;; esac done

在嵌套循环中,break 命令后面还可以跟一个整数,表示跳出第几层循环。

范例2

下面是一个嵌套循环的例子,如果 var1 等于 2,并且 var2 等于 0,就跳出循环:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash for var1 in 1 2 3 do for var2 in 0 5 do if [ $var1 -eq 2 -a $var2 -eq 0 ] then break 2 else echo "$var1 $var2" fi done done

如上,break 2 表示直接跳出外层循环。运行结果:

复制代码
1
2
1 0 1 5

用continue继续循环


continue命令与break命令类似,只有一点差别,它不会跳出所有循环,仅仅跳出当前循环。

范例1

对break的例子进行修改:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash while : do echo -n "Input a number between 1 to 5: " read aNum case $aNum in 1|2|3|4|5) echo "Your number is $aNum!" ;; *) echo "You do not select a number between 1 to 5!" continue echo "Game is over!" ;; esac done

运行代码发现,当输入大于5的数字时,该例中的循环不会结束,语句 echo "Game is over!" 永远不会被执行。

同样,continue 后面也可以跟一个数字,表示跳出第几层循环

定义及使用函数


函数可以让我们将一个复杂功能划分成若干模块,让程序结构更加清晰,代码重复利用率更高。像其他编程语言一样,Shell 也支持函数。Shell 函数必须先定义后使用。

Shell 函数的定义格式如下:

复制代码
1
2
3
4
function_name () { list of commands [ return value ] }

如果你愿意,也可以在函数名前加上关键字 function:

复制代码
1
2
3
4
function function_name () { list of commands [ return value ] }

范例1

下面是一个函数使用的简单例子:

复制代码
1
2
3
4
5
6
7
#!/bin/bash # Define your function here Hello () { echo "Url is http://www.hubwiz.com" } # Invoke your function Hello

运行结果:

复制代码
1
2
/bin/bash test_function Url is http://www.hubwiz.com

调用函数只需要给出函数名,不需要加括号。

函数返回值


函数返回值,可以显式增加return语句;如果不加,会将最后一条命令运行结果作为返回值。

函数返回值在调用该函数后通过 $? 来获得。

范例1

来看一个带有return语句的函数:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash funWithReturn(){ echo "The function is to get the sum of two numbers..." echo -n "Input first number: " read aNum echo -n "Input another number: " read anotherNum echo "The two numbers are $aNum and $anotherNum !" return $(($aNum+$anotherNum)) } funWithReturn # Capture value returnd by last command ret=$? echo "The sum of two numbers is $ret !"

运行结果:

复制代码
1
2
3
4
5
The function is to get the sum of two numbers... Input first number: 25 Input another number: 50 The two numbers are 25 and 50 ! The sum of two numbers is 75 !

Shell 函数返回值只能是整数,一般用来表示函数执行成功与否,0表示成功,其他值表示失败。如果 return 其他数据,比如一个字符串,往往会得到错误提示:“numeric argument required”

注:如果一定要让函数返回字符串,那么可以先定义一个变量,用来接收函数的计算结果,脚本在需要的时候访问这个变量来获得函数返回值。

函数参数


在Shell中,调用函数时可以向其传递参数。在函数体内部,通过 $n 的形式来获取参数的值,例如,$1表示第一个参数,$2表示第二个参数...

范例1

带参数的函数范例:

复制代码
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash funWithParam(){ echo "The value of the first parameter is $1 !" echo "The value of the second parameter is $2 !" echo "The value of the tenth parameter is $10 !" echo "The value of the tenth parameter is ${10} !" echo "The value of the eleventh parameter is ${11} !" echo "The amount of the parameters is $# !" # 参数个数 echo "The string of the parameters is $* !" # 传递给函数的所有参数 } funWithParam 1 2 3 4 5 6 7 8 9 34 73

运行脚本:

复制代码
1
2
3
4
5
6
7
The value of the first parameter is 1 ! The value of the second parameter is 2 ! The value of the tenth parameter is 10 ! The value of the tenth parameter is 34 ! The value of the eleventh parameter is 73 ! The amount of the parameters is 12 ! The string of the parameters is 1 2 3 4 5 6 7 8 9 34 73 !

注意,$10 不能获取第十个参数,获取第十个参数需要${10}。当n>=10时,需要使用${n}来获取参数。

函数嵌套


同其他语言一样,shell函数也支持嵌套使用。

范例1

下面来看一个函数嵌套的例子:

复制代码
1
2
3
4
5
6
7
8
9
10
#!/bin/bash # Calling one function from another number_one () { echo "Url_1 is http://www.baidu.com/cpp/shell/" number_two } number_two () { echo "Url_2 is http://www.baidu.com/cpp/u/xitong/" } number_one

运行结果:

复制代码
1
2
Url_1 is http://www.baidu.com/cpp/shell/ Url_2 is http://www.baidu.com/cpp/u/xitong/

主要内容来自学习平台: 汇智网,笔者在centos7上进行了一些扩展和补充。

最后

以上就是虚心棒球最近收集整理的关于Linux Shell命令(四) 循环语句 函数的全部内容,更多相关Linux内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部