8

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

4

1 回答 1

13
> 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

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

于 2013-10-11T18:24:04.150 回答