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
When you use a TTY, all of the output channels are merged, so you no longer get separate stderr/stdout:
stderr
stdout
https://stackoverflow.com/questions/16838624/why-does-openssh-requesttty-cause-stderr-redirected-to-stdout/16839544#16839544
I think this means that we have a decision to make between:
Solutions are to:
2> /dev/null
sed -i '1d' *.xml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When you use a TTY, all of the output channels are merged, so you no longer get separate
stderr
/stdout
:https://stackoverflow.com/questions/16838624/why-does-openssh-requesttty-cause-stderr-redirected-to-stdout/16839544#16839544
I think this means that we have a decision to make between:
Solutions are to:
2> /dev/null
, essentially discarding all stdout, orsed -i '1d' *.xml
to remove the first line from the output files (assuming the hostgroup warning on the first line is the only issue)The text was updated successfully, but these errors were encountered: