From 21034ed2f029e39541cd006b6c3d746caa0a3d78 Mon Sep 17 00:00:00 2001 From: Hendrik Jaeger Date: Sun, 3 Nov 2019 16:13:28 +0100 Subject: Update all files to use RI6F instead of RIF GnuPG is not case-sensitive and RIF may collide with "verification" and possibly other terms --- rif-checkfriends.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rif-checkfriends.sh') diff --git a/rif-checkfriends.sh b/rif-checkfriends.sh index 24bb12f..af02921 100755 --- a/rif-checkfriends.sh +++ b/rif-checkfriends.sh @@ -1,13 +1,13 @@ #!/bin/sh # 2019-09-10, Nico Schottelius, Seoul -gpg --list-keys --with-colons | grep RIF | awk -F: '{ print $10 }' | sed 's/\\x3a/:/' | ( +gpg --list-keys --with-colons | grep RI6F | awk -F: '{ print $10 }' | sed 's/\\x3a/:/' | ( while read line do name=$(echo $line | sed 's/\(.*\)(.*/\1/') # Assume by default offline online=offline - url=$(echo $line | sed -e 's/.*(RIF //' -e 's/).*//') + url=$(echo $line | sed -e 's/.*(RI6F //' -e 's/).*//') echo "Checking $name on $url ..." curl -6 -s "$url" > /dev/null && online=online echo $name is $online -- cgit v1.2.3