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
Copy file name to clipboardExpand all lines: src/uu/lscpu/src/lscpu.rs
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,16 @@ pub fn uu_app() -> Command {
56
56
.version(crate_version!())
57
57
.about(ABOUT)
58
58
.override_usage(format_usage(USAGE))
59
-
.infer_long_args(true).arg(Arg::new(options::HEX).short('x').long("hex").action(ArgAction::SetTrue).help("Use hexadecimal masks for CPU sets (for example 'ff'). The default is to print the
60
-
sets in list format (for example 0,1). Note that before version 2.30 the mask has been
61
-
printed with 0x prefix.").required(false))
59
+
.infer_long_args(true)
60
+
.arg(
61
+
Arg::new(options::HEX)
62
+
.short('x')
63
+
.long("hex")
64
+
.action(ArgAction::SetTrue)
65
+
.help(
66
+
"Use hexadecimal masks for CPU sets (for example 'ff'). \
67
+
The default is to print the sets in list format (for example 0,1).",
0 commit comments