gpt4 book ai didi

powershell - PowerShell:Start-Job -scriptblock多行脚本 block ?

转载 作者:行者123 更新时间:2023-12-02 04:36:30 24 4
gpt4 key购买 nike

希望有人可以帮助我弄清楚是否可行。我有20条ish行,可以在while循环中扫描日志文件。我需要与脚本的其余部分并行进行。日志扫描循环将条目传递到SQLite中,其他脚本需要对此信息采取行动-因此希望并行运行它们。

如果我使用Job-Start命令,那么-SciptBlock函数似乎只会接受一条管道命令。我有太多命令要传递,因此我需要在脚本块中运行多行。

我尝试了几种方法,但以下示例给出的错误最少。我也像第二个示例一样在Invoke-Command -ScriptBlock -as作业中尝试过-两种方式都不接受多行脚本块。

请问我做错了什么?

Start-Job -Name LogScan -ScriptBlock
{
$EventOld = ConvertFrom-Json (Get-content ( Get-ChildItem | Sort-Object -Property LastWriteTime | Select-Object -last 1 ) | Select-Object -last 1)
$RunLoop = 1
while (RunLoop -ge 1)
{
Start-Sleep -Milliseconds 333
$RunLoop = $RunLoop +1
$EventNew = ConvertFrom-Json (Get-content ( Get-ChildItem | Sort-Object -Property LastWriteTime | Select-Object -last 1 ) | Select-Object -last 1)
if ($EventOld.timestamp -ne $EventNew.timestamp)
{
# lots of commands and here passing the array to SQLite
}
$EventOld = $EventNew
}
}

错误如下:

Start-Job : Missing an argument for parameter 'ScriptBlock'. 
Specify a parameter of type 'System.Management.Automation.ScriptBlock'
and try again. [..]

最佳答案

感谢briantist帮助我到达那里:)

使用Start-JobInvoke-Command时,请注意将-ScriptBlock参数的开头{与命令放在同一行。不要像使用o​​jit_code或if命令那样将其放在下面的行中。

这就导致了另一个问题,即没有发现您没有正确匹配打开的while和关闭的{括号,因为您习惯于匹配其缩进级别以将它们配对。

请注意,代码中对}的引用。这些来自一个JSON字段称为$Event.timestamp的事实-它不是标准字符串或数组的方法或属性。

关于powershell - PowerShell:Start-Job -scriptblock多行脚本 block ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42149748/

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