blob: 4b33e68c5941268d2a8ffd8ff145a88512417e83 [file] [log] [blame]
#!/bin/sh
#
# print the subject
#
for i in $*
do
n=`ssleay x509 -subject -noout -in $i`
echo "$i $n"
done