#!/bin/bash # # # GLOBAL_VAR1="one" GLOBAL_VAR2="two" function function_one() { local LOCAL_VAR1="one" # } # Main body of shell script starts here. # # # # Exit with an explicit exit status. exit 0