Files
tldr/pages/common/function.md
T
2025-03-26 00:36:41 +02:00

318 B

function

Define a function. 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

  • Display help:

help function