From 88a159e5f7f6b6670b1ea6e7b2c4f0db0d9189fb Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 23 Jun 2020 02:04:25 -0400 Subject: mention that uuids can also be used to select entries --- src/bin/rbw/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/bin/rbw/main.rs b/src/bin/rbw/main.rs index ddbcb22..258fd04 100644 --- a/src/bin/rbw/main.rs +++ b/src/bin/rbw/main.rs @@ -43,7 +43,7 @@ enum Opt { #[structopt(about = "Display the password for a given entry")] Get { - #[structopt(help = "Name of the entry to display")] + #[structopt(help = "Name or UUID of the entry to display")] name: String, #[structopt(help = "Username of the entry to display")] user: Option, @@ -148,7 +148,7 @@ enum Opt { as a note." )] Edit { - #[structopt(help = "Name of the password entry")] + #[structopt(help = "Name or UUID of the password entry")] name: String, #[structopt(help = "Username for the password entry")] user: Option, @@ -158,7 +158,7 @@ enum Opt { #[structopt(about = "Remove a given entry", visible_alias = "rm")] Remove { - #[structopt(help = "Name of the password entry")] + #[structopt(help = "Name or UUID of the password entry")] name: String, #[structopt(help = "Username for the password entry")] user: Option, @@ -168,7 +168,7 @@ enum Opt { #[structopt(about = "View the password history for a given entry")] History { - #[structopt(help = "Name of the password entry")] + #[structopt(help = "Name or UUID of the password entry")] name: String, #[structopt(help = "Username for the password entry")] user: Option, -- cgit v1.2.3-54-g00ecf