Dup Ver Goto 📝

BashFunctions

PT2/aw/os/shell does not exist
To
6 lines, 29 words, 149 chars Page 'BashFunctions' does not exist.

Exporting functions

f() { echo "hello"; }
export -f f

note the -f is required in export -f in order for a function to be exported.