gpt4 book ai didi

powershell - PowerShell 中 'nohup' 的等价物是什么?

转载 作者:行者123 更新时间:2023-12-03 16:42:25 27 4
gpt4 key购买 nike

如何模拟 unix 命令的行为 nohup在 PowerShell 中?即 nohup my-other-nonblocking-command .我注意到了 Start-Job命令,但是语法对我来说有点不清楚。

最佳答案

> Start-Job my.exe

此输出失败:
Start-Job : Parameter set cannot be resolved using the specified named parameters.
At line:1 char:1
+ Start-Job my.exe
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Start-Job], ParameterBindingException
+ FullyQualifiedErrorId : AmbiguousParameterSet,Microsoft.PowerShell.Commands.StartJobCommand

试试这个:
> Start-Job { & C:\Full\Path\To\my.exe }

它将起作用,您将看到如下输出:
Id     Name            PSJobTypeName   State         HasMoreData     Location             Command
-- ---- ------------- ----- ----------- -------- -------
2 Job2 BackgroundJob Running True localhost & .\my.exe

我希望这就是你要找的,因为你的问题有点含糊。

关于powershell - PowerShell 中 'nohup' 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19321903/

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