mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
10 lines
110 B
Bash
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
|