You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GNU expand shows an error message when a file doesn't exist and continues work with the next given arguments, while uutils expand stops when an error occurs.
GNU expand:
$ echo "a" > a
$ expand a nonexisting a
a
expand: nonexisting: No such file or directory
a
$ echo $?
1
uutils expand:
$ echo "a" > a
$ cargo run expand a nonexisting a
a
expand: nonexisting: No such file or directory
$ echo $?
1
GNU
expand
shows an error message when a file doesn't exist and continues work with the next given arguments, while uutilsexpand
stops when an error occurs.GNU
expand
:uutils
expand
:This issue is very similar to #5809
The text was updated successfully, but these errors were encountered: