reorganize directory structure again

This commit is contained in:
David Todd
2021-01-12 18:33:49 -06:00
parent 74ba4615d1
commit 158ccfcea0
63 changed files with 32 additions and 30 deletions

15
home/bin/cert_expiry Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Prints the expiration dates of all TLS Certificates in a directory
# This is usually pem, but can also be crt
if [[ -z $1 ]]; then
echo "certificate type not set, defaulting to pem"
filetype="pem"
else
filetype=$1
fi
for filename in ./*.${filetype}; do
echo -n "${filename} expires on: "
openssl x509 -noout -dates -in "${filename}" | sed -n '/notAfter/p' | sed 's/^.\{9\}//'
done