freebsd-dev/crypto/openssl/tools/c_name
2008-08-23 10:51:00 +00:00

11 lines
110 B
Bash

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