Revision f4179bead44fc43734db4efcfcfa01478d161b28 authored by Dr. Stephen Henson on 16 September 2008, 11:50:05 UTC, committed by Dr. Stephen Henson on 16 September 2008, 11:50:05 UTC
1 parent fced277
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