mirror of
https://github.com/openssl/openssl.git
synced 2024-11-24 18:43:34 +08:00
b8b0b5d856
PR: 847
11 lines
112 B
Bash
11 lines
112 B
Bash
#!/bin/sh
|
|
#
|
|
# print out the issuer
|
|
#
|
|
|
|
for i in $*
|
|
do
|
|
n=`openssl x509 -issuer -noout -in $i`
|
|
echo "$i $n"
|
|
done
|