Help text and manpage consistency tweaks

This commit is contained in:
Jack Grigg 2019-10-30 08:17:57 +00:00
parent 20fff3a52b
commit 14eb033f9f
No known key found for this signature in database
GPG key ID: 9E8255172BBF9898
2 changed files with 25 additions and 23 deletions

View file

@ -6,6 +6,12 @@ fn rage_page() {
let page = Manual::new("rage")
.about("A simple, secure, and modern encryption tool")
.author(Author::new("Jack Grigg").email("thestr4d@gmail.com"))
.flag(
Flag::new()
.short("-h")
.long("--help")
.help("Display help text and exit"),
)
.flag(
Flag::new()
.short("-g")
@ -26,7 +32,7 @@ fn rage_page() {
)
.flag(
Flag::new()
.short("-A")
.short("-a")
.long("--armor")
.help("Create ASCII armored output (default is age binary format)"),
)
@ -42,11 +48,10 @@ fn rage_page() {
.long("--output")
.help("The file path to write output to (defaults to stdout)"),
)
.flag(
Flag::new()
.short("-h")
.long("--help")
.help("Display help text and exit"),
.option(
Opt::new("aliases")
.long("--aliases")
.help("The list of aliases to load (defaults to ~/.config/age/aliases.txt)"),
)
.arg(Arg::new("[arguments...]"))
.example(
@ -94,10 +99,7 @@ fn rage_page() {
)
.example(
Example::new()
.text(
"Encryption to an alias \
(stored at ~/.config/age/aliases.txt, change with --aliases)",
)
.text("Encryption to an alias")
.command("tar cv ~/xxx | rage alias:str4d > xxx.tar.age"),
)
.example(
@ -123,6 +125,12 @@ fn rage_mount_page() {
let page = Manual::new("rage-mount")
.about("Mount an age-encrypted filesystem")
.author(Author::new("Jack Grigg").email("thestr4d@gmail.com"))
.flag(
Flag::new()
.short("-h")
.long("--help")
.help("Display help text and exit"),
)
.flag(
Flag::new()
.short("-t")
@ -135,12 +143,6 @@ fn rage_mount_page() {
.long("--passphrase")
.help("Use a passphrase instead of public keys"),
)
.flag(
Flag::new()
.short("-h")
.long("--help")
.help("Display help text and exit"),
)
.arg(Arg::new("filename"))
.arg(Arg::new("mountpoint"))
.arg(Arg::new("[keys...]"))