mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
cp: fix help for -H
This commit is contained in:
parent
90babe2775
commit
9166269aec
1 changed files with 5 additions and 5 deletions
|
@ -497,6 +497,11 @@ pub fn uu_app<'a>() -> Command<'a> {
|
|||
.overrides_with(options::NO_DEREFERENCE)
|
||||
.help("always follow symbolic links in SOURCE"),
|
||||
)
|
||||
.arg(
|
||||
Arg::new(options::CLI_SYMBOLIC_LINKS)
|
||||
.short('H')
|
||||
.help("follow command-line symbolic links in SOURCE"),
|
||||
)
|
||||
.arg(
|
||||
Arg::new(options::ARCHIVE)
|
||||
.short('a')
|
||||
|
@ -544,11 +549,6 @@ pub fn uu_app<'a>() -> Command<'a> {
|
|||
default type",
|
||||
),
|
||||
)
|
||||
.arg(
|
||||
Arg::new(options::CLI_SYMBOLIC_LINKS)
|
||||
.short('H')
|
||||
.help("NotImplemented: follow command-line symbolic links in SOURCE"),
|
||||
)
|
||||
// END TODO
|
||||
.arg(
|
||||
Arg::new(options::PATHS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue