We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Case:
[fgeorgatos@node060 ~]$ bash -x -c 'echo hello' + set +x hello [fgeorgatos@node060 ~]$ unset BASH_ENV [fgeorgatos@node060 ~]$ bash -x -c 'echo hello' + echo hello hello [fgeorgatos@node060 ~]$
Example how to save+restore xtrace (-x) option, which would be the better way to handle this:
xtrace_saved="$(set -o | grep xtrace | grep 'on')"; set +x echo hello [ -n "$xtrace_saved" ] && set -x unset xtrace_saved
The text was updated successfully, but these errors were encountered:
Merge pull request #41 from plabrop/issue33
4c92836
//fix issue #33
ETA?!
Sorry, something went wrong.
@johnnydevaprasad : we need some progress on this one...
calling this fixed via #69
and #67
fgeorgatos
johnnydevaprasad
No branches or pull requests
Case:
Example how to save+restore xtrace (-x) option, which would be the better way to handle this:
The text was updated successfully, but these errors were encountered: