mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
nproc: use the variable name
This commit is contained in:
parent
805801ec39
commit
c660684a8c
1 changed files with 2 additions and 2 deletions
|
@ -47,13 +47,13 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
|
|||
.arg(
|
||||
Arg::with_name(OPT_ALL)
|
||||
.short("")
|
||||
.long("all")
|
||||
.long(OPT_ALL)
|
||||
.help("print the number of cores available to the system"),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name(OPT_IGNORE)
|
||||
.short("")
|
||||
.long("ignore")
|
||||
.long(OPT_IGNORE)
|
||||
.takes_value(true)
|
||||
.help("ignore up to N cores"),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue