Fix rage manpage

This commit is contained in:
Jack Grigg 2019-10-25 20:33:28 +13:00
parent 2dec008b82
commit 06d658adc2
No known key found for this signature in database
GPG key ID: 9E8255172BBF9898

View file

@ -36,7 +36,13 @@ fn rage_page() {
.long("--output")
.help("The file path to write output to (defaults to stdout)"),
)
.arg(Arg::new("arguments"))
.flag(
Flag::new()
.short("-h")
.long("--help")
.help("Display help text and exit"),
)
.arg(Arg::new("[arguments...]"))
.example(
Example::new()
.text("Generate a new key pair")
@ -91,13 +97,13 @@ fn rage_page() {
.example(
Example::new()
.text("Decryption with keys at ~/.config/age/keys.txt")
.command("age -decrypt -i hello.age")
.command("rage --decrypt -i hello.age")
.output("_o/"),
)
.example(
Example::new()
.text("Decryption with custom keys")
.command("age -d -o hello -i hello.age keyA.txt keyB.txt"),
.command("rage -d -o hello -i hello.age keyA.txt keyB.txt"),
)
.render();