exit and return codes

This commit is contained in:
mlot
2026-05-13 12:18:41 -04:00
parent 29edb4b99e
commit 4cc63974f1

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
#
# <Replace with the purpose or description of of this shell script.>
#
GLOBAL_VAR1="one"
GLOBAL_VAR2="two"
function function_one() {
local LOCAL_VAR1="one"
# <Replace with function code.>
}
# Main body of shell script starts here.
#
# <Replace with the main commands of your shell script.>
#
# Exit with an explicit exit status.
exit 0