Add tlscheck function to bashrc

This commit is contained in:
Anthony Rose 2022-03-31 13:24:44 +00:00
parent 3da6331b64
commit e2a8a9f606

View file

@ -246,6 +246,15 @@ simpletls () {
fi fi
} }
tlscheck () {
if [ "x$1" == "x" ]
then
echo "Usage: tlscheck hostname:port" >&2
else
echo | openssl s_client -connect $1 | openssl x509 -text
fi
}
case "$-" in case "$-" in
*i*) *i*)
# Shell is interactive # Shell is interactive