首页 > 代码库 > Bash函数

Bash函数

函数定义

[function] fun() {  
    list of commands  
    [ return value ]  
} 

 

Bash函数