]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/openssl/tools/c_name
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / openssl / tools / c_name
1 #!/bin/sh
2 #
3 # print the subject
4 #
5
6 for i in $*
7 do
8         n=`openssl x509 -subject -noout -in $i`
9         echo "$i        $n"
10 done