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