mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #6231 from LucasLarson/copy-recursive-option
swap `cp`’s short `-r` and alias `-R` recursive options
This commit is contained in:
commit
7f71611849
1 changed files with 2 additions and 2 deletions
|
@ -467,8 +467,8 @@ pub fn uu_app() -> Command {
|
|||
)
|
||||
.arg(
|
||||
Arg::new(options::RECURSIVE)
|
||||
.short('r')
|
||||
.visible_short_alias('R')
|
||||
.short('R')
|
||||
.visible_short_alias('r')
|
||||
.long(options::RECURSIVE)
|
||||
// --archive sets this option
|
||||
.help("copy directories recursively")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue