mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-14 03:06:43 +00:00
11 lines
112 B
Bash
11 lines
112 B
Bash
#!/bin/sh
|
|
#
|
|
# print out the issuer
|
|
#
|
|
|
|
for i in $*
|
|
do
|
|
n=`openssl x509 -issuer -noout -in $i`
|
|
echo "$i $n"
|
|
done
|