diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-06-29 18:15:24 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-06-29 18:15:24 +0300 |
commit | dd5217885ee3a5ad0637ebae4cbefe40071aa8c1 (patch) | |
tree | 7a627a1a71938316133f357e576f2ea28812f32e /bin | |
parent | f9c0cbe0340e22f9bb11e77b6c0f302364c391db (diff) | |
download | arching-kaos-tools-dd5217885ee3a5ad0637ebae4cbefe40071aa8c1.tar.gz arching-kaos-tools-dd5217885ee3a5ad0637ebae4cbefe40071aa8c1.tar.bz2 arching-kaos-tools-dd5217885ee3a5ad0637ebae4cbefe40071aa8c1.zip |
ak-gpg: new flag --list-keys
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ak-gpg | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,7 +10,9 @@ ## ## --get-key-self-as-fingerprint Returns the fingerprint of your key ## -## --get-key-fingerprint-from-ipfs Returns the fingerprint of a given key +## --get-key-fingerprint-from-ipfs Returns the fingerprint of a given key +## +## --list-keys Returns a list of known GPG keys ## fullprogrampath="$(realpath $0)" PROGRAM=$(basename $0) @@ -31,6 +33,7 @@ if [ ! -z $1 ]; then --get-key-self-as-ipfs) _ak_gpg_key_self_get_fingerprint_from_config; exit;; --get-key-self-as-fingerprint) _ak_gpg_key_self_get_fingerprint; exit;; --get-key-fingerprint-from-ipfs) _ak_gpg_key_get_fingerprint_from_ipfs $1; exit;; + --list-keys) _ak_gpg_list_keys; exit;; * ) _ak_usage;; esac else _ak_usage |