mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07: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:
+2
-2
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user