gpt4 book ai didi

powershell - 在 ubuntu 机器上使用 powershell 获取 SSL 证书到期日期

转载 作者:太空宇宙 更新时间:2023-11-03 13:13:58 25 4
gpt4 key购买 nike

我正在尝试使用 PS 模式在 ubuntu 机器上执行以下脚本,但它没有显示任何内容,我想知道如何获得这个日期。下面是我写的脚本:

$var = (Get-ChildItem /etc/ssl/certs)[0].NotAfter
Write-Host $var

最佳答案

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

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

关于powershell - 在 ubuntu 机器上使用 powershell 获取 SSL 证书到期日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56058515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com