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