Dup Goto 📝

BashFunctions

PT2/aw/os/shell 07-31 13:46:42
To Pop
6 lines, 29 words, 149 chars Monday 2023-07-31 13:46:42

Exporting functions

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

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