diff --git a/exit_return_codes/exercise1.sh b/exit_return_codes/exercise1.sh index 8267e08..384e0ed 100755 --- a/exit_return_codes/exercise1.sh +++ b/exit_return_codes/exercise1.sh @@ -1,20 +1,6 @@ #!/usr/bin/env bash -# -# -# -GLOBAL_VAR1="one" -GLOBAL_VAR2="two" +echo "This script will exit wity a 0 exit status." -function function_one() { - local LOCAL_VAR1="one" - # -} - -# Main body of shell script starts here. -# -# -# - -# Exit with an explicit exit status. +# Exit with an explicit 0 exit status. exit 0