主页 > 知识库 > Shell脚本中使用function(函数)示例

Shell脚本中使用function(函数)示例

热门标签:网站排名优化 铁路电话系统 地方门户网站 呼叫中心市场需求 百度竞价排名 服务外包 Linux服务器 AI电销

函数可以在shell script当中做一个类似自定义执行命令,最大的功能就是可以简化我们很多的程序代码。需要注意的是shell script的执行方式是由上而下/由左而右,因此在shellscript当中的function的设置一定要在程序的最前面,这样才能够在执行时被找到可用的程序段。

复制代码 代码如下:

#!/bin/bash
# Program
#    This program is to show the use of "function"
# History
# 2013/5/4 by Lvcy First release
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/loacl/sbin:~/bin
export PATH
 
#输出统一信息
function printInfo ()
{
        echo -n "Your choice is "
}
#将小写字符转换为大写字符
function dotr()
{
        tr 'a-z' 'A-Z'
}
read -p "Please input your choice(one|two|three|four):" num
#用case做条件判断
case $num in
        "one")
                printInfo; echo $num | dotr
                ;;
        "two")
                printInfo; echo $num | dotr
                ;;
        "Three")
                printInfo; echo $num | dotr
                ;;
        "four") printInfo; echo $num | dotr
                ;;
esac
exit 0

下面是一个一般的带有function函数的shell脚本:

复制代码 代码如下:

#!/bin/bash
# Program
#    This program is show the params of function
# History
#    2013/5/14 by Lvcy First release
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
function printInfo()
{
        echo "Your choice is $1"
}
case $1 in
        "one")
                printInfo 1
                ;;
        "two")
                printInfo 2
                ;;
        "three")
                printInfo 3
                ;;
        "four")
                printInfo 4
                ;;
esac

exit 0

若以上文件名为sh02.sh,则执行这个script的命令为:

复制代码 代码如下:

sh sh02.sh one

您可能感兴趣的文章:
  • Shell中关于时间和日期的函数总结
  • Linux 在Shell脚本中使用函数实例详解
  • shell 使用数组作为函数参数的方法(详解)
  • Shell使用Epoch进行日期时间转换和计算的几个小函数
  • Linux Shell函数返回值
  • shell中函数的应用
  • PowerShell中的函数重载示例
  • Shell中函数返回值超出问题
  • Shell函数的7种用法介绍
  • 浅谈Shell中的函数

标签:铜川 崇左 黄山 兰州 湘潭 衡水 仙桃 湖南

巨人网络通讯声明:本文标题《Shell脚本中使用function(函数)示例》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266