openssl/tools/c_name

11 lines
109 B
Text
Raw Normal View History

#!/bin/sh
#
# print the subject
#
for i in $*
do
n=`ssleay x509 -subject -noout -in $i`
echo "$i $n"
done