Bash
Functions Commands
Create reusable functions in Bash. Learn function syntax, parameters, and return values for modular scripts.
8 commands
Pro Tips
Use 'local' keyword to declare local variables inside functions.
Functions access arguments via $1, $2, etc. Use $@ for all arguments.