summaryrefslogtreecommitdiffstats
path: root/tool/src/sqv-usage.rs
blob: 54f5a0af9b9db964c5522ce576a5bbdd4d555a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! A command-line frontend for Sequoia.
//!
//! # Usage
//!
//! ```text
//! sqv is a command-line OpenPGP signature verification tool.
//!
//! USAGE:
//!     sqv [FLAGS] [OPTIONS] <SIG-FILE> <FILE> --keyring <FILE>...
//!
//! FLAGS:
//!     -h, --help       Prints help information
//!         --trace      Trace execution.
//!     -V, --version    Prints version information
//!
//! OPTIONS:
//!     -r, --keyring <FILE>...    A keyring
//!     -n, --signatures <N>       The number of valid signatures to return success.  Default: 1
//!
//! ARGS:
//!     <SIG-FILE>    File containing the detached signature.
//!     <FILE>        File to verify.
//! ```

include!("sqv.rs");