+if check_resembles_gpg_fingerprint "$myVar"; then
+ yell "Looks like a gpg fingerprint:$myVar";
+else
+ yell "Doesn't look like a gpg fingerprint:$myVar";
+fi;
+
+myVar="69B4C4CDC628F8F9";
+if check_resembles_gpg_fingerprint "$myVar"; then
+ yell "Looks like a gpg fingerprint:$myVar";
+else
+ yell "Doesn't look like a gpg fingerprint:$myVar";
+fi;
+
+myVar="26646D99CBAEC9B81982EF6029D9EE6B1FC730C1";
+if check_resembles_gpg_fingerprint "$myVar"; then
+ yell "Looks like a gpg fingerprint:$myVar";
+else
+ yell "Doesn't look like a gpg fingerprint:$myVar";
+fi;
+
+myVar="deadbeef";
+if check_resembles_gpg_fingerprint "$myVar"; then
+ yell "Looks like a gpg fingerprint:$myVar";
+else
+ yell "Doesn't look like a gpg fingerprint:$myVar";
+fi;
+
+myVar="foobar";
+if check_resembles_gpg_fingerprint "$myVar"; then
+ yell "Looks like a gpg fingerprint:$myVar";
+else
+ yell "Doesn't look like a gpg fingerprint:$myVar";
+fi;
+
+myVar="zzzzzzzz";
+if check_resembles_gpg_fingerprint "$myVar"; then