mirror of
https://github.com/str4d/rage.git
synced 2025-04-05 20:07:42 +03:00
Help text and manpage consistency tweaks
This commit is contained in:
parent
20fff3a52b
commit
14eb033f9f
2 changed files with 25 additions and 23 deletions
|
@ -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...]"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue