mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-29 04:21:03 +08:00
461 B
461 B
function
Define a function. See also:
declare,unset. More information: https://www.gnu.org/software/bash/manual/bash.html#Shell-Functions.
- Define a function with the specified name:
function {{func_name}} { {{echo "Function contents here"}}; }
- Run a function named
func_name:
func_name
- Define a function without the
functionkeyword:
{{func_name}}() { {{echo "Function contents here"}}; }
- Display help:
help function