1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 18:35:41 +02:00

pacman-key: add short options (#17310)

This commit is contained in:
Dylan 2025-07-24 05:21:20 +00:00 committed by GitHub
parent 5677518260
commit 2b9b738e0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,19 +14,19 @@
- List keys from the public keyring:
`pacman-key --list-keys`
`pacman-key {{[-l|--list-keys]}}`
- Add the specified keys:
`sudo pacman-key --add {{path/to/keyfile.gpg}}`
`sudo pacman-key {{[-a|--add]}} {{path/to/keyfile.gpg}}`
- Receive a key from a key server:
`sudo pacman-key --recv-keys "{{uid|name|email}}"`
`sudo pacman-key {{[-r|--recv-keys]}} "{{uid|name|email}}"`
- Print the fingerprint of a specific key:
`pacman-key --finger "{{uid|name|email}}"`
`pacman-key {{[-f|--finger]}} "{{uid|name|email}}"`
- Sign an imported key locally:
@ -34,4 +34,4 @@
- Remove a specific key:
`sudo pacman-key --delete "{{uid|name|email}}"`
`sudo pacman-key {{[-d|--delete]}} "{{uid|name|email}}"`