curl trust certificate code example
Example 1: validate ssl certificate on website using curl
curl --cert-status -v https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* Server certificate:/ { cert=1 } /^\*/ { if (cert) print }'
Example 2: curl ignore certificate
$ curl -k ...