mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Documentation changes for rm, resolves #36
This commit is contained in:
parent
af2437b725
commit
204260b739
2 changed files with 1 additions and 2 deletions
|
@ -104,7 +104,6 @@ To do
|
||||||
- realpath
|
- realpath
|
||||||
- relpath
|
- relpath
|
||||||
- remove
|
- remove
|
||||||
- rm
|
|
||||||
- rmdir
|
- rmdir
|
||||||
- runcon
|
- runcon
|
||||||
- seq
|
- seq
|
||||||
|
|
2
rm/rm.rs
2
rm/rm.rs
|
@ -46,7 +46,7 @@ fn main() {
|
||||||
groups::optflag("i", "", "prompt before every removal"),
|
groups::optflag("i", "", "prompt before every removal"),
|
||||||
groups::optflag("I", "", "prompt once before removing more than three files, or when removing recursively. Less intrusive than -i, while still giving some protection against most mistakes"),
|
groups::optflag("I", "", "prompt once before removing more than three files, or when removing recursively. Less intrusive than -i, while still giving some protection against most mistakes"),
|
||||||
groups::optflagopt("", "interactive", "prompt according to WHEN: never, once (-I), or always (-i). Without WHEN, prompts always", "WHEN"),
|
groups::optflagopt("", "interactive", "prompt according to WHEN: never, once (-I), or always (-i). Without WHEN, prompts always", "WHEN"),
|
||||||
groups::optflag("", "one-file-system", "when removing a hierarchy recursively, skip any directory that is on a file system different from that of the corresponding command line argument"),
|
groups::optflag("", "one-file-system", "when removing a hierarchy recursively, skip any directory that is on a file system different from that of the corresponding command line argument (NOT IMPLEMENTED)"),
|
||||||
groups::optflag("", "no-preserve-root", "do not treat '/' specially"),
|
groups::optflag("", "no-preserve-root", "do not treat '/' specially"),
|
||||||
groups::optflag("", "preserve-root", "do not remove '/' (default)"),
|
groups::optflag("", "preserve-root", "do not remove '/' (default)"),
|
||||||
groups::optflag("r", "recursive", "remove directories and their contents recursively"),
|
groups::optflag("r", "recursive", "remove directories and their contents recursively"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue