1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-12 16:40:25 +00:00
qb64/internal/c/mingw32/opt/ssl/misc/c_info
2019-01-01 22:40:38 +11:00

12 lines
152 B
Bash

#!/bin/sh
#
# print the subject
#
for i in $*
do
n=`openssl x509 -subject -issuer -enddate -noout -in $i`
echo "$i"
echo "$n"
echo "--------"
done