1
0
mirror of https://github.com/akelge/zsh synced 2025-07-03 13:09:07 +00:00
Files
zsh/zsh.d/zshfunctions/x509
2017-04-15 09:25:40 +02:00

6 lines
100 B
Plaintext

if [ -r "$1" ]; then
openssl x509 -in $1 -noout -text | less
else
echo "x509 <certfile>"
fi