1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-07 22:20:15 +00:00
QB64-PE/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