From 657cf0ec52fa5f73abeb47b5ee5dc76cad1f3ea9 Mon Sep 17 00:00:00 2001 From: Jes Olson Date: Mon, 20 Sep 2021 11:41:14 -0500 Subject: [PATCH] Fix up getcert, make openssl act sanely --- bin/getcert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/getcert b/bin/getcert index 0b4baa9..ead5a2e 100755 --- a/bin/getcert +++ b/bin/getcert @@ -4,4 +4,4 @@ url="$1" parsed_url=$(printf "%s" "$url" | sed 's|https://||g') -openssl s_client -connect "$parsed_url" 443 | openssl x509 -noout -text +printf '\n' | openssl s_client -connect "$parsed_url":443 -showcerts | openssl x509 -noout -text -- 2.51.2