Add direct command flags to pretty CLI interface text

This commit is contained in:
Jack Grigg
2021-04-15 22:14:13 +12:00
parent 9fb8cd5f86
commit b1249982de
+6 -2
View File
@@ -278,10 +278,14 @@ fn main() -> Result<(), Error> {
eprintln!(); eprintln!();
eprintln!("This tool can create a new age identity in a free slot of your YubiKey."); eprintln!("This tool can create a new age identity in a free slot of your YubiKey.");
eprintln!("It will generate an identity file that you can use with an age client,"); eprintln!("It will generate an identity file that you can use with an age client,");
eprintln!("along with the corresponding recipient."); eprintln!("along with the corresponding recipient. You can also do this directly");
eprintln!("with:");
eprintln!(" age-plugin-yubikey --generate");
eprintln!(); eprintln!();
eprintln!("If you are already using a YubiKey with age, you can select an existing"); eprintln!("If you are already using a YubiKey with age, you can select an existing");
eprintln!("slot to recreate its corresponding identity file and recipient."); eprintln!("slot to recreate its corresponding identity file and recipient. You can");
eprintln!("also obtain this directly with:");
eprintln!(" age-plugin-yubikey --identity");
eprintln!(); eprintln!();
eprintln!("When asked below to select an option, use the up/down arrow keys to"); eprintln!("When asked below to select an option, use the up/down arrow keys to");
eprintln!("make your choice, or press [Esc] or [q] to quit."); eprintln!("make your choice, or press [Esc] or [q] to quit.");