mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
add comment
This commit is contained in:
parent
867e117c99
commit
d9adec3496
1 changed files with 2 additions and 0 deletions
|
@ -129,6 +129,8 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
|
||||||
.help("remove directories and their contents recursively")
|
.help("remove directories and their contents recursively")
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
// To mimic GNU's behavior we also want the '-R' flag. However, using clap's
|
||||||
|
// alias method 'visible_alias("R")' would result in a long '--R' flag.
|
||||||
Arg::with_name(OPT_RECURSIVE_R).short("R")
|
Arg::with_name(OPT_RECURSIVE_R).short("R")
|
||||||
.help("Equivalent to -r")
|
.help("Equivalent to -r")
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue