mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
7466462628
infringement reasons.
11 lines
110 B
Bash
11 lines
110 B
Bash
#!/bin/sh
|
|
#
|
|
# print the subject
|
|
#
|
|
|
|
for i in $*
|
|
do
|
|
n=`openssl x509 -subject -noout -in $i`
|
|
echo "$i $n"
|
|
done
|