实例说明
#!/bin/bash
function db1() { #函数定义
read -p "Enter a value:" value
echo "double the value"
return $[ $value*2 ] #返回值在0~255
}
db1 #函数调用
echo "The new value is $?" #$?:上次执行命令的返回状态
function db2() { #函数定义
read -p "Enter a value:" value
echo $[ $value *2 ]
}
result=`db2` #使用函数输出
echo "double the value:$result"
function add() { #函数定义,参数传递
echo $[ $1 + $2 ] #函数内 $1:函数第一个参数 $2:函数第二个参数
}
result=`add $1 $2` #把脚本参数 $1 $2 传递给函数
echo "The sum is $result"
function para() {
local temp1=$[ $temp2+5 ] #定义局部变量
result=$[ $temp1*2] #全局变量
}
temp1=4 #全局变量
temp2=6
para
echo "The result is $result"
if [ $temp1 -gt $temp2 ];then
echo "temp1 is larger"
else
echo "temp2 is larger"
fi
function testii() { #数组传递
local newarry #定义局部变量
newarry=(`echo "$@"`)
echo "the new arry is ${newarry[*]}" #打印数组
}
newarry=(0 1 2 3 4)
echo "The old arry is ${newarry[*]}"
testii ${newarry[*]} #在数组传递时,不能只传递数组名,必须把数组拆分为单个元素
function arrydblr() {
local newarry
local oldarry
local elements
local i
oldarry=(`echo "$@"`)
elements=$[ $# - 1 ]
for((i=0; i<=elements; i++))
do
newarry[$i]=$[ ${oldarry[$i]} * 2 ]
done
echo ${newarry[*]} #数组返回
}
myarry=(1 2 3 4 5) #数组定义
echo "The my arry is ${myarry[*]}"
result=(`arrydblr ${myarry[*]}`) #调用函数数组返回
echo "The new arry is ${result[*]}"
. ./myfuncs #引用外部脚本函数
value1=10
value2=5
result=`addem $value1 $value2` #调用外部函数
echo "The result is $result"