gpt4 book ai didi

powershell - 在 PowerShell 中连接字符串和表达式结果

转载 作者:行者123 更新时间:2023-12-04 01:48:14 25 4
gpt4 key购买 nike

我想在 PowerShell 中写出当前进程 ID。这有效:

$processId = $([System.Diagnostics.Process]::GetCurrentProcess()).Id
Write-Output "My process ID is $processId"

但是,如果可能的话,我想在一行中完成。替换 $([System.Diagnostics.Process]::GetCurrentProcess()).Id对于变量似乎没有评估表达式。

最佳答案

'My process id is {0}' -f [System.Diagnostics.Process]::GetCurrentProcess().Id

如果我们使用自动变量:
'My process id is {0}' -f $pid

关于powershell - 在 PowerShell 中连接字符串和表达式结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4741860/

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