mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
11 lines
109 B
Plaintext
11 lines
109 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# print the subject
|
||
|
#
|
||
|
|
||
|
for i in $*
|
||
|
do
|
||
|
n=`ssleay x509 -subject -noout -in $i`
|
||
|
echo "$i $n"
|
||
|
done
|