mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
9 lines
169 B
Bash
9 lines
169 B
Bash
|
#!/bin/sh
|
||
|
for f in usr/share/ssl/root/*.pem; do
|
||
|
echo
|
||
|
echo File: $f
|
||
|
echo
|
||
|
openssl crl2pkcs7 -nocrl -certfile $f |
|
||
|
openssl pkcs7 -print_certs -text -noout
|
||
|
done
|