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