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
The error message printed when dd is given an argument of, for example, bs= does not match that of GNU dd and is less clear anyway.
dd
bs=
GNU dd:
$ dd bs= dd: invalid number: ‘’
uutils dd:
$ ./target/release/dd bs= ./target/release/dd: Unrecognized byte multiplier ->
The text was updated successfully, but these errors were encountered:
Message displayed when executing dd iflag= is:
dd iflag=
dd: invalid input flag: ‘’ Try 'dd --help' for more information.
Should rust implementation also display Try 'dd...?
Try 'dd...
Sorry, something went wrong.
I think you are referring to the following difference between GNU dd and uutils dd; if so then yes, let's match GNU dd in this case as well:
$ dd iflag= dd: invalid input flag: ‘’ Try 'dd --help' for more information.
$ ./target/debug/dd iflag= ./target/debug/dd: Unrecognized iflag=FLAG or oflag=FLAG ->
Successfully merging a pull request may close this issue.
The error message printed when
dd
is given an argument of, for example,bs=
does not match that of GNUdd
and is less clear anyway.GNU dd:
uutils dd:
$ ./target/release/dd bs= ./target/release/dd: Unrecognized byte multiplier ->
The text was updated successfully, but these errors were encountered: