mirror of
https://github.com/str4d/rage.git
synced 2025-04-06 04:17:41 +03:00
Fix rage manpage
This commit is contained in:
parent
2dec008b82
commit
06d658adc2
1 changed files with 9 additions and 3 deletions
|
@ -36,7 +36,13 @@ fn rage_page() {
|
||||||
.long("--output")
|
.long("--output")
|
||||||
.help("The file path to write output to (defaults to stdout)"),
|
.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(
|
||||||
Example::new()
|
Example::new()
|
||||||
.text("Generate a new key pair")
|
.text("Generate a new key pair")
|
||||||
|
@ -91,13 +97,13 @@ fn rage_page() {
|
||||||
.example(
|
.example(
|
||||||
Example::new()
|
Example::new()
|
||||||
.text("Decryption with keys at ~/.config/age/keys.txt")
|
.text("Decryption with keys at ~/.config/age/keys.txt")
|
||||||
.command("age -decrypt -i hello.age")
|
.command("rage --decrypt -i hello.age")
|
||||||
.output("_o/"),
|
.output("_o/"),
|
||||||
)
|
)
|
||||||
.example(
|
.example(
|
||||||
Example::new()
|
Example::new()
|
||||||
.text("Decryption with custom keys")
|
.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();
|
.render();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue