cat: set exit code for invalid arguments to 1 instead of 2

This commit is contained in:
Terts Diepraam
2022-05-04 21:32:14 +02:00
parent 7b84261df4
commit 8df253da69
+1 -1
View File
@@ -188,7 +188,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
.collect_str(InvalidEncodingHandling::Ignore)
.accept_any();
let matches = uu_app().get_matches_from(args);
let matches = uu_app().try_get_matches_from(args)?;
let number_mode = if matches.is_present(options::NUMBER_NONBLANK) {
NumberingMode::NonEmpty