1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

ls -aA: Add a comment

This commit is contained in:
Sylvestre Ledru 2022-03-21 09:13:56 +01:00 committed by GitHub
parent af8726af43
commit 3009c73e9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1202,6 +1202,7 @@ pub fn uu_app<'a>() -> Command<'a> {
Arg::new(options::files::ALL)
.short('a')
.long(options::files::ALL)
// Overrides -A (as the order matters)
.overrides_with(options::files::ALMOST_ALL)
.help("Do not ignore hidden files (files with names that start with '.')."),
)
@ -1209,6 +1210,7 @@ pub fn uu_app<'a>() -> Command<'a> {
Arg::new(options::files::ALMOST_ALL)
.short('A')
.long(options::files::ALMOST_ALL)
// Overrides -a (as the order matters)
.overrides_with(options::files::ALL)
.help(
"In a directory, do not ignore all file names that start with '.', \