mirror of
https://github.com/akelge/zsh
synced 2025-07-03 05:05:28 +00:00
6 lines
100 B
Plaintext
6 lines
100 B
Plaintext
if [ -r "$1" ]; then
|
|
openssl x509 -in $1 -noout -text | less
|
|
else
|
|
echo "x509 <certfile>"
|
|
fi
|