From 204260b739fbc7c12283c04a54518263b202cb23 Mon Sep 17 00:00:00 2001 From: Arcterus Date: Wed, 18 Dec 2013 16:31:25 -0800 Subject: [PATCH] Documentation changes for rm, resolves #36 --- README.md | 1 - rm/rm.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b0acd8962..dc1532da5 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,6 @@ To do - realpath - relpath - remove -- rm - rmdir - runcon - seq diff --git a/rm/rm.rs b/rm/rm.rs index 72f9e36c0..8c6652a03 100644 --- a/rm/rm.rs +++ b/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"),