aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-06-23 02:04:25 -0400
committerJesse Luehrs <doy@tozt.net>2020-06-23 02:04:25 -0400
commit88a159e5f7f6b6670b1ea6e7b2c4f0db0d9189fb (patch)
treee3ddace9f797e6ff6b2dfce679394ec376b3bd8e /src
parent217c456b5a2a000b609c345c3aa785103b87a4ce (diff)
downloadrbw-88a159e5f7f6b6670b1ea6e7b2c4f0db0d9189fb.tar.gz
rbw-88a159e5f7f6b6670b1ea6e7b2c4f0db0d9189fb.zip
mention that uuids can also be used to select entries
Diffstat (limited to 'src')
-rw-r--r--src/bin/rbw/main.rs8
1 files changed, 4 insertions, 4 deletions
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<String>,
@@ -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<String>,
@@ -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<String>,
@@ -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<String>,