Bash set debugging options
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.
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.
Comments
Post a Comment