gpt4 book ai didi

powershell - 使用 powershell 提取日期格式

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

你好,我有一个 powershell 脚本,它使用这种格式显示证书 ssl 的到期日期

notAfter=Aug 17 22:00:00 2015 GMT

我只想提取日期(删除 notAfter=GMT)并确保我有日期格式变量而不是字符串,然后我想从当前日期中提取该值并得到差异,我尝试删除和替换但两者都没有改变。更准确地说,这是给我 notafter 值的命令

$timessl = ((& openssl x509 -in/etc/ssl/certs/certificate.pem -dates -noout) -match 'notAfter')

最佳答案

试试这个。

$timessl="notAfter=Aug 17 22:00:00 2015 GMT"
$t=$timessl.Replace("notAfter=","").Replace("GMT","")
write-output $t

关于powershell - 使用 powershell 提取日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56113291/

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