Shell 函数格式
linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。
shell中函数的定义格式如下:
可以把函数理解为一条命令,
0
1 2 3 4 5 6 7 8 9 0 me you he world
14
1
2
3
4
5
6
7
8
9
0
me
you
he
world
0
shell中函数的定义格式如下:
[ function ] funname [()]
{
action;[return int;]
}
可以把函数理解为一条命令,
- 返回值是一个整型值,自行完后,返回值保存在$?;
- 传参:直接在函数后面跟参数;
- 在函数内部使用1,2...调用($0还是脚本文件的文件名,不是函数名);
- 当n>=10时,使用{n}来获取参数(比如:{10},${11});
- $#表示参数个数;
- $*表示全部参数;
function say_hello()
{
echo 0
echo{10}
echo *
echo#
for param in *
do
echoparam
done
return 0
}
say_hello 1 2 3 4 5 6 7 8 9 0 me you he world
echo $?
输出结果:
test.sh0
1 2 3 4 5 6 7 8 9 0 me you he world
14
1
2
3
4
5
6
7
8
9
0
me
you
he
world
0