shell execute command code example
Example 1: how to run shell script
chmod +x <fileName>
./fileName. # or use ->. bash fileName
Example 2: execute bash with commands being shown
set -x #Just use this command to activate debugging within your code
## some code ... ##
set +x #Deactivate debugging