exercise1

This commit is contained in:
mlot
2026-05-13 13:05:23 -04:00
parent cf662e7708
commit cac0aea0c3

View File

@@ -1,20 +1,6 @@
#!/usr/bin/env bash
#
# <Replace with the purpose or description of of this shell script.>
#
GLOBAL_VAR1="one"
GLOBAL_VAR2="two"
echo "This script will exit wity a 0 exit status."
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 with an explicit 0 exit status.
exit 0