Revision e8ccaee31caa9376dd752b45a8f1a62259a69867 authored by Matt Caswell on 15 January 2015, 15:05:59 UTC, committed by Matt Caswell on 15 January 2015, 15:05:59 UTC
Reviewed-by: Stephen Henson <steve@openssl.org>
1 parent 60431d0
Raw File
c_info
#!/bin/sh
#
# print the subject
#

for i in $*
do
	n=`openssl x509 -subject -issuer -enddate -noout -in $i`
	echo "$i"
	echo "$n"
	echo "--------"
done
back to top