服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - Linux 在Shell脚本中使用函数实例详解

Linux 在Shell脚本中使用函数实例详解

2022-01-22 17:17linjiqin Linux

这篇文章主要介绍了Linux 在Shell脚本中使用函数实例详解的相关资料,需要的朋友可以参考下

Linux 在Shell脚本中使用函数实例详解

Shell的函数

Shell程序也支持函数。函数能完成一特定的功能,可以重复调用这个函数。

函数格式如下:

?
1
2
3
4
函数名()
{
  函数体
}

 函数调用方式:

函数名 参数列表                      

实例:编写一函数add求两个数的和,这两个数用位置参数传入,最后输出结果。

?
1
root@ubuntu:/home/study# vi test3
?
1
2
3
4
5
6
7
8
9
#!/bin/bash
 
add(){
  a=$1;
  b=$2;
  z=`expr $a + $b`;
  echo "The sum is $z";
}
add $1 $2
?
1
2
root@ubuntu:/home/study# chmod +x test3
root@ubuntu:/home/study# ./test3 1 2

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://www.cnblogs.com/linjiqin/p/3148715.html

延伸 · 阅读

精彩推荐