add debugging examples for bash

add new command route
This commit is contained in:
Brandon Pierce
2014-08-13 10:49:56 -07:00
parent 28478ff257
commit 41d2a810e6
2 changed files with 11 additions and 0 deletions

View File

@ -12,3 +12,9 @@ in
2) echo "two found";;
3*) echo "something beginning with 3 found";;
esac
# Turn on debugging:
set -x
# Turn off debugging:
set +x