shell 函数
Posted rivsidn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 函数相关的知识,希望对你有一定的参考价值。
函数定义
$ cat demo.sh #! /bin/bash function fun() echo "this is a function" fun
$ ./demo.sh this is a function
函数参数、返回值
- 参数跟shell 参数传递中保持一致
- 返回值范围为0-255
以上是关于shell 函数的主要内容,如果未能解决你的问题,请参考以下文章