Bash:Function

From wiki
Revision as of 14:02, 25 August 2019 by Hdridder (talk | contribs) (Created page with "category:Bash category:Linux/Unix ;function <naam> { cmdlist } :Define a function (subroutine), must be run by the script before you can call it. :A function is calle...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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