Files

21 lines
370 B
Bash
Raw Permalink Normal View History

2026-02-13 07:57:06 -05:00
#!/usr/bin/env bash
2026-02-06 13:39:28 -05:00
#
# <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