mooc/www/sys/fs/etc/ssl/misc/c_name
2023-01-31 08:47:50 +04:00

11 lines
110 B
Bash

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