mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #2325 from tertsdiepraam/fix-sum-help-text
`sum`: fix help text for System V argument
This commit is contained in:
commit
448c8419d3
1 changed files with 2 additions and 2 deletions
|
@ -108,13 +108,13 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
|
|||
.arg(
|
||||
Arg::with_name(options::BSD_COMPATIBLE)
|
||||
.short(options::BSD_COMPATIBLE)
|
||||
.help("use the BSD compatible algorithm (default)"),
|
||||
.help("use the BSD sum algorithm, use 1K blocks (default)"),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name(options::SYSTEM_V_COMPATIBLE)
|
||||
.short("s")
|
||||
.long(options::SYSTEM_V_COMPATIBLE)
|
||||
.help("use the BSD compatible algorithm (default)"),
|
||||
.help("use System V sum algorithm, use 512 bytes blocks"),
|
||||
)
|
||||
.get_matches_from(args);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue