-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
Description
GNU cksum shows an error message when a file does not exist and continues work with the next given arguments, while uutils cksum stops when error occurs.
GNU:
$ cksum README.md nothing Cargo.toml
4037539306 8038 README.md
cksum: nothing: No such file or directory
3830277208 20970 Cargo.toml
uutils:
$ coreutils cksum README.md nothing Cargo.toml
4037539306 8038 README.md
cksum: nothing: No such file or directory
Reactions are currently unavailable