diff options
author | Jesus E <heckyel@riseup.net> | 2023-04-22 13:26:00 -0400 |
---|---|---|
committer | Jesus E <heckyel@riseup.net> | 2023-04-22 13:26:00 -0400 |
commit | bed0810a72f67e0648caf8288f0a5f661b4282be (patch) | |
tree | b13d66fa19256b7f02c0381d40ab36c2c6862eb6 | |
parent | 6fa8369ce1e9dfecd7b35019fe259e52284278e2 (diff) | |
download | book-bed0810a72f67e0648caf8288f0a5f661b4282be.tar.lz book-bed0810a72f67e0648caf8288f0a5f661b4282be.tar.xz book-bed0810a72f67e0648caf8288f0a5f661b4282be.zip |
update
-rw-r--r-- | gpg/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpg/README.md b/gpg/README.md index 1bec038..4a15a17 100644 --- a/gpg/README.md +++ b/gpg/README.md @@ -41,7 +41,7 @@ $ gpg -k ### Copy Public Key ```console -$ gpg --export --armor <user-id> | xclip -sel clip +gpg --export --armor $(gpg -K --with-colons --keyid-format SHORT | awk -F: '/^pub:/ { print $5 }') | xclip -sel clip ``` ### Copy Private key (Caution) |