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:
parent
af8726af43
commit
3009c73e9c
1 changed files with 2 additions and 0 deletions
|
@ -1202,6 +1202,7 @@ pub fn uu_app<'a>() -> Command<'a> {
|
||||||
Arg::new(options::files::ALL)
|
Arg::new(options::files::ALL)
|
||||||
.short('a')
|
.short('a')
|
||||||
.long(options::files::ALL)
|
.long(options::files::ALL)
|
||||||
|
// Overrides -A (as the order matters)
|
||||||
.overrides_with(options::files::ALMOST_ALL)
|
.overrides_with(options::files::ALMOST_ALL)
|
||||||
.help("Do not ignore hidden files (files with names that start with '.')."),
|
.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)
|
Arg::new(options::files::ALMOST_ALL)
|
||||||
.short('A')
|
.short('A')
|
||||||
.long(options::files::ALMOST_ALL)
|
.long(options::files::ALMOST_ALL)
|
||||||
|
// Overrides -a (as the order matters)
|
||||||
.overrides_with(options::files::ALL)
|
.overrides_with(options::files::ALL)
|
||||||
.help(
|
.help(
|
||||||
"In a directory, do not ignore all file names that start with '.', \
|
"In a directory, do not ignore all file names that start with '.', \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue