主頁(yè) > 知識(shí)庫(kù) > Shell腳本中使用function(函數(shù))示例

Shell腳本中使用function(函數(shù))示例

熱門標(biāo)簽:佛山高德地圖標(biāo)注中心 東莞電銷機(jī)器人價(jià)格一覽表 百度地圖的地圖標(biāo)注 陜西電銷卡外呼系統(tǒng)怎么安裝 excel地址地圖標(biāo)注 百度地圖標(biāo)注圖標(biāo)更換 旅游地圖標(biāo)注大全 地圖標(biāo)注超出范圍怎么辦 杭州機(jī)器人外呼系統(tǒng)

函數(shù)可以在shell script當(dāng)中做一個(gè)類似自定義執(zhí)行命令,最大的功能就是可以簡(jiǎn)化我們很多的程序代碼。需要注意的是shell script的執(zhí)行方式是由上而下/由左而右,因此在shellscript當(dāng)中的function的設(shè)置一定要在程序的最前面,這樣才能夠在執(zhí)行時(shí)被找到可用的程序段。

復(fù)制代碼 代碼如下:

#!/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
 
#輸出統(tǒng)一信息
function printInfo ()
{
        echo -n "Your choice is "
}
#將小寫(xiě)字符轉(zhuǎn)換為大寫(xiě)字符
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

下面是一個(gè)一般的帶有function函數(shù)的shell腳本:

復(fù)制代碼 代碼如下:

#!/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,則執(zhí)行這個(gè)script的命令為:

復(fù)制代碼 代碼如下:

sh sh02.sh one

您可能感興趣的文章:
  • Shell中關(guān)于時(shí)間和日期的函數(shù)總結(jié)
  • Linux 在Shell腳本中使用函數(shù)實(shí)例詳解
  • shell 使用數(shù)組作為函數(shù)參數(shù)的方法(詳解)
  • Shell使用Epoch進(jìn)行日期時(shí)間轉(zhuǎn)換和計(jì)算的幾個(gè)小函數(shù)
  • Linux Shell函數(shù)返回值
  • shell中函數(shù)的應(yīng)用
  • PowerShell中的函數(shù)重載示例
  • Shell中函數(shù)返回值超出問(wèn)題
  • Shell函數(shù)的7種用法介紹
  • 淺談Shell中的函數(shù)

標(biāo)簽:通遼 雅安 青島 西藏 延邊 朝陽(yáng) 南充 隨州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Shell腳本中使用function(函數(shù))示例》,本文關(guān)鍵詞  Shell,腳本,中,使用,function,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Shell腳本中使用function(函數(shù))示例》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Shell腳本中使用function(函數(shù))示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章