mirror of
https://github.com/opnsense/src.git
synced 2026-04-06 18:05:18 -04:00
11 lines
110 B
Text
11 lines
110 B
Text
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# print the subject
|
||
|
|
#
|
||
|
|
|
||
|
|
for i in $*
|
||
|
|
do
|
||
|
|
n=`openssl x509 -subject -noout -in $i`
|
||
|
|
echo "$i $n"
|
||
|
|
done
|