Difference between revisions of "Bash:Function"

From wiki
Jump to navigation Jump to search
m
m
 
Line 1: Line 1:
[[category:Bash]]
 
 
[[Category:Linux/Unix]]
 
[[Category:Linux/Unix]]
  

Latest revision as of 11:40, 20 January 2022


function <naam> { cmdlist }
Define a function (subroutine), must be run by the script before you can call it.
A function is called by the function name and eventual parameters. Parameters are positional like when you call a scripts ($1, $2,...). Variables that already exist when you call the functions are global.
typeset VAR=<value>
Define local variables in a function.
Functions can be made available in the loginshell by defining them in the $ENV script or by putting the script in $FPATH.
unset -f <function>
Undefine function