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_name
2019-01-01 22:40:38 +11:00

10 lines
110 B
Bash

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