Update usage

This commit is contained in:
Kevin Liu 2016-10-21 23:58:59 -07:00
parent 7ad0765090
commit 8fa3ba51fe
2 changed files with 7 additions and 7 deletions

View file

@ -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 <graveyard> Directory where deleted files go to rest
-r, --resurrect <target> 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:
<TARGET>... File or directory to remove

View file

@ -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();