Linux/OpenSSL:Send find output to openssl

Posted by Starsky on Stack Overflow See other posts from Stack Overflow or by Starsky
Published on 2010-04-30T20:19:23Z Indexed on 2010/05/01 2:27 UTC
Read the original article Hit count: 462

Filed under:
|
|
|
|

I am trying to send the output from the find command to OpenSSL in order to find out when certificates expire.

This finds the files

find . -name \*.pem -type f

This generates the cert info I want

openssl x509 -in certname.pem -noout -enddate

Can I merge these two?

Thanks for your help.

© Stack Overflow or respective owner

Related posts about openssl

Related posts about linux