Revision d1321464f6c609d106d6af9a4e599661bf6c59b7 authored by Dr. Stephen Henson on 25 September 2011, 15:51:57 UTC, committed by Dr. Stephen Henson on 25 September 2011, 15:51:57 UTC
1 parent a0055fb
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