aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/rbw/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/rbw/main.rs')
-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>,