From dd5217885ee3a5ad0637ebae4cbefe40071aa8c1 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Sat, 29 Jun 2024 18:15:24 +0300 Subject: ak-gpg: new flag --list-keys --- bin/ak-gpg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin/ak-gpg') diff --git a/bin/ak-gpg b/bin/ak-gpg index 5ff9e6e..63d0c7b 100755 --- a/bin/ak-gpg +++ b/bin/ak-gpg @@ -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 -- cgit v1.2.3