Revision 62f4033381a013c8a8edb6db5345da678495d94f authored by Dr. Stephen Henson on 04 February 2013, 23:12:58 UTC, committed by Dr. Stephen Henson on 04 February 2013, 23:12:58 UTC
1 parent f9f6a8f
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