Archived
16
0
This repository has been archived on 2024-07-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
drift-old/ssl/crt-expiry-dates

7 lines
207 B
Bash
Executable File

#!/bin/bash
## Lister opp utløpsdato for alle sertifikater i crt/
for x in crt/*.pem ; do echo -ne $x "\t"; date --iso --date "$(openssl x509 -text < $x|grep "Not After"|cut -d: -f2-)" ; done |sort -k 2