1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-17 21:34:45 +00:00
qb64/internal/c/mingw32/opt/ssl/misc/c_name

11 lines
110 B
Text
Raw Normal View History

2019-01-01 11:40:38 +00:00
#!/bin/sh
#
# print the subject
#
for i in $*
do
n=`openssl x509 -subject -noout -in $i`
echo "$i $n"
done