1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

ls: add short option for ignore

This commit is contained in:
Terts Diepraam 2021-04-05 23:06:56 +02:00
parent a50eae76a4
commit cbc5132981

View file

@ -704,6 +704,7 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
) )
.arg( .arg(
Arg::with_name(options::IGNORE) Arg::with_name(options::IGNORE)
.short("I")
.long(options::IGNORE) .long(options::IGNORE)
.takes_value(true) .takes_value(true)
.multiple(true) .multiple(true)