使用Ubuntu机器上的Powershell获取SSL证书的到期日期

时间:2019-05-09 11:35:06

标签: powershell ubuntu ssl

我正在尝试使用PS模式在ubuntu机器上执行以下脚本,但是它什么也没显示,我想知道该怎么办。 下面是我编写的脚本:

ion-content{
  --ion-background-color: transparent;
}

1 个答案:

答案 0 :(得分:2)

PowerShell不会为您神奇地解析证书文件。使用openssl命令。

$cert = (Get-ChildItem /etc/ssl/certs)[0].FullName
$var = ((& openssl x509 -in $cert -dates -noout) -match 'notAfter').Split('=')[1]