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

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

热门标签:佛山高德地图标注中心 东莞电销机器人价格一览表 百度地图的地图标注 陕西电销卡外呼系统怎么安装 excel地址地图标注 百度地图标注图标更换 旅游地图标注大全 地图标注超出范围怎么办 杭州机器人外呼系统

函数可以在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(函数)示例》,本文关键词  Shell,脚本,中,使用,function,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《Shell脚本中使用function(函数)示例》相关的同类信息!
  • 本页收集关于Shell脚本中使用function(函数)示例的相关信息资讯供网民参考!
  • 推荐文章