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
Environment: Ubuntu 20.04, uutils main branch (git commit 20b5365), GNU coreutils v8.30
Steps to reproduce:
$ stdbuf -o1 .
What happens now: with uutils stdbuf, the exit status is 1.
stdbuf
What I expected to happen: with GNU stdbuf, the exit status is 126.
Notes: this is causing a failure in the GNU test file tests/misc/stdbuf.sh.
tests/misc/stdbuf.sh
For reference, the documentation for GNU stdbuf states
Exit status: 125 if ‘stdbuf’ itself fails 126 if COMMAND is found but cannot be invoked 127 if COMMAND cannot be found the exit status of COMMAND otherwise
Exit status:
Finally, for bonus points, the error message is slightly different. uutils says
stdbuf: failed to execute process: Permission denied
and GNU says
stdbuf: failed to run command ‘.’: Permission denied
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Environment: Ubuntu 20.04, uutils main branch (git commit 20b5365), GNU coreutils v8.30
Steps to reproduce:
What happens now: with uutils
stdbuf
, the exit status is 1.What I expected to happen: with GNU
stdbuf
, the exit status is 126.Notes: this is causing a failure in the GNU test file
tests/misc/stdbuf.sh
.For reference, the documentation for GNU
stdbuf
statesFinally, for bonus points, the error message is slightly different. uutils says
and GNU says
The text was updated successfully, but these errors were encountered: