snippetbashTip
tlmgr key — Manage GPG keys used to verify TeX Live databases. More information: <https://www.tug.org/texlive/do
Viewed 0 times
keyscommandgpgclimanageusedtlmgr keyverify
Problem
How to use the
tlmgr key command: Manage GPG keys used to verify TeX Live databases. More information: <https://www.tug.org/texlive/doc/tlmgr.html#key>.Solution
tlmgr key — Manage GPG keys used to verify TeX Live databases. More information: <https://www.tug.org/texlive/doc/tlmgr.html#key>.List all keys for TeX Live:
tlmgr key listAdd a key from a specific file:
sudo tlmgr key add {{path/to/key.gpg}}Add a key from
stdin:cat {{path/to/key.gpg}} | sudo tlmgr key add -Remove a specific key by its ID:
sudo tlmgr key remove {{key_id}}Code Snippets
List all keys for TeX Live
tlmgr key listAdd a key from a specific file
sudo tlmgr key add {{path/to/key.gpg}}Add a key from `stdin`
cat {{path/to/key.gpg}} | sudo tlmgr key add -Remove a specific key by its ID
sudo tlmgr key remove {{key_id}}Context
tldr-pages: common/tlmgr key
Revisions (0)
No revisions yet.