mooc/www/sys/fs/etc/ssl/misc/c_name

11 lines
110 B
Plaintext
Raw Normal View History

2023-01-31 08:47:50 +04:00
#!/bin/sh
#
# print the subject
#
for i in $*
do
n=`openssl x509 -subject -noout -in $i`
echo "$i $n"
done