freebsd-dev/crypto/openssl/tools/c_name
2000-01-10 06:22:05 +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