summaryrefslogtreecommitdiffstats
path: root/sq/src/sq_cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'sq/src/sq_cli.rs')
-rw-r--r--sq/src/sq_cli.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/sq/src/sq_cli.rs b/sq/src/sq_cli.rs
index 316126e0..7397f20e 100644
--- a/sq/src/sq_cli.rs
+++ b/sq/src/sq_cli.rs
@@ -152,6 +152,19 @@ pub fn build() -> App<'static, 'static> {
to using the one that expired last"))
)
+ .subcommand(SubCommand::with_name("merge-signatures")
+ .display_order(31)
+ .about("Merges two signatures")
+ .arg(Arg::with_name("input1").value_name("FILE")
+ .help("Sets the first input file to use"))
+ .arg(Arg::with_name("input2").value_name("FILE")
+ .help("Sets the second input file to use"))
+ .arg(Arg::with_name("output").value_name("FILE")
+ .long("output")
+ .short("o")
+ .help("Sets the output file to use"))
+ )
+
.subcommand(SubCommand::with_name("sign")
.display_order(25)
.about("Signs a message")