文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Shell函数的7种用法介绍

2022-06-04 21:45

关注

1. 在shell文件内部定义函数并引用:

[~/shell/function]# cat factorial.sh 

#!/bin/bash

function factorial

{

factorial=1

for (( i=1;i <= $1;i++ ))

        do

        factorial=$[ $factorial * $i ]

        done

echo $1的阶乘是:$factorial

}

echo '程序名':$0,用于求阶乘

factorial $1

[~/shell/function]# ./factorial.sh 10

程序名:./factorial.sh,用于求阶乘
10的阶乘是:3628800

2.返回值

函数返回码是指函数最后一条命令的状态码,可以用于函数返回值
使用return命令手动指定返回值:

[~/shell/function]# cat return.sh 

#!/bin/bash

function fun1 {

  read -p "enter a: " a

  echo -n "print 2a: "

  return $[ $a * 2 ]

}

fun1

echo "return value $?"

[~/shell/function]# ./return.sh 

enter a: 100

print 2a: return value 200

由于shell状态码最大是255,所以当返回值大于255时会出错。

[~/shell/function]# ./return.sh 

enter a: 200

print 2a: return value 144

3.函数输出

为了返回大于255的数、浮点数和字符串值,最好用函数输出到变量:

[~/shell/function]# cat ./fun_out.sh 

#!/bin/bash

function fun2 {

  read -p "enter a: " a

  echo -n "print 2a: "

  echo $[ $a * 2 ]

}

result=`fun2`

echo "return value $result"

[~/shell/function]# ./fun_out.sh     

enter a: 400

return value print 2a: 800

4.向函数传递参数(使用位置参数):

[~/shell/function]# cat ./parameter.sh 

#!/bin/bash

if [ $# -ne 3 ]

then

    echo "usage: $0 a b c"

    exit

fi

fun3() {

    echo $[ $1 * $2 * $3 ]

}

result=`fun3 $1 $2 $3`

echo the result is $result

[~/shell/function]# ./parameter.sh  1 2 3

the result is 6

[~/shell/function]# ./parameter.sh  1 2

usage: ./parameter.sh a b c

5.全局变量与局部变量

默认条件下,在函数和shell主体中建立的变量都是全局变量,可以相互引用,当shell主体部分与函数部分拥有名字相同的变量时,可能会相互影响,例如:

[~/shell/function]# cat ./variable.sh    

#!/bin/bash

if [ $# -ne 3 ]

then

    echo "usage: $0 a b c"

    exit

fi

temp=5

value=6

echo temp is: $temp

echo value is: $value

fun3() {

    temp=`echo "scale=3;$1*$2*$3" | bc -ql`   

    result=$temp

}

fun3 $1 $2 $3

echo "the result is $result"

if [ `echo "$temp > $value" | bc -ql` -ne 0 ]

then 

    echo "temp is larger"

else

    echo "temp is still smaller"

fi

[~/shell/function]# ./variable.sh  12 3 2

temp is: 5

value is: 6

the result is 72

temp is larger

在这种情况下,在函数内部最好使用局部变量,消除影响。

[~/shell/function]# cat ./variable.sh 

#!/bin/bash

if [ $# -ne 3 ]

then

    echo "usage: $0 a b c"

    exit

fi

temp=5

value=6

echo temp is: $temp

echo value is: $value

fun3() {

    local temp=`echo "scale=3;$1*$2*$3" | bc -ql`   

    result=$temp

}

fun3 $1 $2 $3

echo "the result is $result"

if [ `echo "$temp > $value" | bc -ql` -ne 0 ]

then 

    echo "temp is larger"

else

    echo "temp is still smaller"

fi

[~/shell/function]# ./variable.sh  12 3 2

temp is: 5

value is: 6

the result is 72

temp is still smaller

6.向函数传递数组变量:

[~/shell/function]# cat array.sh 

#!/bin/bash

a=(11 12 13 14 15)

echo ${a[*]}

function array(){

  echo parameters : "$@" 

  local factorial=1

  for value in "$@"

  do

    factorial=$[ $factorial * $value ]

  done

  echo $factorial

}

array ${a[*]}

[~/shell/function]# ./array.sh 

11 12 13 14 15

parameters : 11 12 13 14 15

360360

7.函数返回数组变量

[~/shell/function]# cat array1.sh 

#!/bin/bash

a=(11 12 13 14 15)

function array(){

  echo parameters : "$@" 

  local newarray=(`echo "$@"`)

  local element="$#"

  local i

  for (( i = 0; i < $element; i++ ))

  {

    newarray[$i]=$[ ${newarray[$i]} * 2 ]    

  }

  echo  new value:${newarray[*]}

}

result=`array ${a[*]}`

echo ${result[*]}

[~/shell/function]# ./array1.sh 

parameters : 11 12 13 14 15 new value:22 24 26 28 30

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-服务器
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯