mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 14:52:41 +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
|
||||
- relpath
|
||||
- remove
|
||||
- rm
|
||||
- rmdir
|
||||
- runcon
|
||||
- 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 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::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("", "preserve-root", "do not remove '/' (default)"),
|
||||
groups::optflag("r", "recursive", "remove directories and their contents recursively"),
|
||||
|
|
Loading…
Reference in a new issue