Skip to content

Instantly share code, notes, and snippets.

@ChatchaiJ
Created September 25, 2017 08:17
Show Gist options
  • Save ChatchaiJ/6e71bdd3af850bea45bf93d062657e02 to your computer and use it in GitHub Desktop.
Save ChatchaiJ/6e71bdd3af850bea45bf93d062657e02 to your computer and use it in GitHub Desktop.
#!/bin/sh
[ -z "$1" ] && echo "Usage: $0 https://www.google.com" && exit
URL="$1"
curl --insecure -v $URL 2>&1 |\
awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (cert) print }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment