my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

1#!/bin/sh 2# 3# display certs from an https url 4 5url="$1" 6parsed_url=$(printf "%s" "$url" | sed 's|https://||g') 7printf '\n' | openssl s_client -connect "$parsed_url":443 -showcerts | openssl x509 -noout -text