Update cheatsheets

This commit is contained in:
ivuorinen
2025-07-25 00:21:52 +00:00
parent e6afdf72af
commit 46995545d6
5 changed files with 88 additions and 7 deletions

View File

@@ -19,19 +19,19 @@ source: https://github.com/tldr-pages/tldr.git
- 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:
@@ -39,4 +39,4 @@ source: https://github.com/tldr-pages/tldr.git
- Remove a specific key:
`sudo pacman-key --delete "{{uid|name|email}}"`
`sudo pacman-key {{[-d|--delete]}} "{{uid|name|email}}"`