From 8fa3ba51fee6183f0c9a1004c63113b740f10b11 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Fri, 21 Oct 2016 23:58:59 -0700 Subject: [PATCH] Update usage --- README.org | 8 ++++---- src/main.rs | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.org b/README.org index 738cc15..91a76d7 100644 --- a/README.org +++ b/README.org @@ -24,15 +24,15 @@ USAGE: rip [FLAGS] [OPTIONS] [TARGET]... FLAGS: - -d, --decompose Permanently delete (unlink) the entire graveyard + -d, --decompose Permanently deletes (unlink) the entire graveyard -h, --help Prints help information - -i, --inspect Print some info about TARGET before prompting for action - -r, --resurrect Undo the last removal by the current user - -s, --seance Print files that were sent under the current directory + -i, --inspect Prints some info about TARGET before prompting for action + -s, --seance Prints files that were sent under the current directory -V, --version Prints version information OPTIONS: --graveyard Directory where deleted files go to rest + -r, --resurrect Undo the last removal by the current user, or specify some file(s) in the graveyard. Combine with -s to restore everything printed by -s. ARGS: ... File or directory to remove diff --git a/src/main.rs b/src/main.rs index 4a31882..fbc2542 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,11 +46,11 @@ Send files to the graveyard (/tmp/.graveyard) instead of unlinking them.") .long("graveyard") .takes_value(true)) .arg(Arg::with_name("decompose") - .help("Permanently delete (unlink) the entire graveyard") + .help("Permanently deletes (unlink) the entire graveyard") .short("d") .long("decompose")) .arg(Arg::with_name("seance") - .help("Print files that were sent under the current directory") + .help("Prints files that were sent under the current directory") .short("s") .long("seance")) .arg(Arg::with_name("resurrect") @@ -62,7 +62,7 @@ Send files to the graveyard (/tmp/.graveyard) instead of unlinking them.") .value_name("target") .min_values(0)) .arg(Arg::with_name("inspect") - .help("Print some info about TARGET before prompting for action") + .help("Prints some info about TARGET before prompting for action") .short("i") .long("inspect")) .get_matches();