diff options
author | Hendrik Jaeger <git-commit@henk.geekmail.org> | 2019-11-03 16:13:28 +0100 |
---|---|---|
committer | Hendrik Jaeger <git-commit@henk.geekmail.org> | 2019-11-03 16:13:28 +0100 |
commit | 21034ed2f029e39541cd006b6c3d746caa0a3d78 (patch) | |
tree | bc3193ec31b42e591d60936ec9d5d6847ebd24e9 /rif-listfriends.sh | |
parent | 679c6ffb8f8d87c6802a81ae2da272f4c9108baf (diff) |
GnuPG is not case-sensitive and RIF may collide with "verification" and
possibly other terms
Diffstat (limited to 'rif-listfriends.sh')
-rwxr-xr-x | rif-listfriends.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rif-listfriends.sh b/rif-listfriends.sh index 4a7e31f..6f9af62 100755 --- a/rif-listfriends.sh +++ b/rif-listfriends.sh @@ -1,4 +1,4 @@ #!/bin/sh # 2019-09-10, Nico Schottelius, Seoul -gpg --list-keys --with-colons | awk -F: '/RIF/ { print gensub("\\\\x3a", ":", "g", $10) }' +gpg --list-keys --with-colons | awk -F: '/RI6F/ { print gensub("\\\\x3a", ":", "g", $10) }' |