Bash Set -x

# Print commands and their arguments as they are executed.
set -x
# Disable Print commands.
set +x
kitingChris