mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
ls: add help text and value name for --hide and --ignore
This commit is contained in:
parent
c1f2d41a27
commit
1dc4ab92d9
1 changed files with 4 additions and 0 deletions
|
@ -785,6 +785,8 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
|
|||
.long(options::HIDE)
|
||||
.takes_value(true)
|
||||
.multiple(true)
|
||||
.value_name("PATTERN")
|
||||
.help("do not list implied entries matching shell PATTERN (overridden by -a or -A)")
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name(options::IGNORE)
|
||||
|
@ -792,6 +794,8 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
|
|||
.long(options::IGNORE)
|
||||
.takes_value(true)
|
||||
.multiple(true)
|
||||
.value_name("PATTERN")
|
||||
.help("do not list implied entries matching shell PATTERN")
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name(options::IGNORE_BACKUPS)
|
||||
|
|
Loading…
Reference in a new issue