1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 09:02:08 +02:00

gpgv: add page (#4116)

This commit is contained in:
James Hibbard 2020-06-20 03:50:04 +00:00 committed by GitHub
parent 6e943a3808
commit 4972c4bf4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
pages/common/gpgv.md Normal file
View file

@ -0,0 +1,16 @@
# gpgv
> Verify OpenPGP signatures.
> More information: <https://www.gnupg.org/documentation/manuals/gnupg/gpgv.html>.
- Verify a signed file:
`gpgv {{path/to/file}}`
- Verify a signed file using a detached signature:
`gpgv {{path/to/signature}} {{path/to/file}}`
- Add a file to the list of keyrings (a single exported key also accounts as a keyring):
`gpgv --keyring {{./alice.keyring}} {{path/to/file}} {{path/to/signature}}`