openssl1.0/tools/c_name

11 lines
110 B
Plaintext
Raw Normal View History

2019-08-09 10:00:55 +02:00
#!/bin/sh
#
# print the subject
#
for i in $*
do
n=`openssl x509 -subject -noout -in $i`
echo "$i $n"
done