Files
Splunk_Docker/files/splunkbeta/openssl/misc/c_info
Brett Woodruff 28c8d411ad Inital Commit
2024-06-13 15:48:26 -04:00

13 lines
152 B
Bash
Executable File

#!/bin/sh
#
# print the subject
#
for i in $*
do
n=`openssl x509 -subject -issuer -enddate -noout -in $i`
echo "$i"
echo "$n"
echo "--------"
done