1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Merge pull request #2035 from tertsdiepraam/ls/hide_and_ignore

ls: add short option for ignore
This commit is contained in:
Sylvestre Ledru 2021-04-06 08:54:26 +02:00 committed by GitHub
commit cc4f32d87a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -739,6 +739,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)