Please Visit: http://ift.tt/1ajReyV
from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/PKTRXU
via LifeLong Community
Debugging Bash scripts: -xv
http://ift.tt/1lJWTpC
bash -x script1.sh
Debugging on part(s) of the script
set -x # activate debugging from here
w
set +x # stop debugging from he
set -f set -o noglob Disable file name generation using metacharacters (globbing).
set -v set -o verbose Prints shell input lines as they are read.
set -x set -o xtrace Print command traces before executing command.
http://ift.tt/1lJWTpC
bash -x script1.sh
Debugging on part(s) of the script
set -x # activate debugging from here
w
set +x # stop debugging from he
set -f set -o noglob Disable file name generation using metacharacters (globbing).
set -v set -o verbose Prints shell input lines as they are read.
set -x set -o xtrace Print command traces before executing command.
from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/PKTRXU
via LifeLong Community
No comments:
Post a Comment