0

我正在尝试将 stdout 重定向到.\output\worker01.logstderr 到.\output\worker01-error.log. 如果我在 shell 中运行命令,它会起作用:

PS Q:\mles\etl-i_test> .\worker\bin\win32\php.exe -q -c .\worker\conf\php.ini .\worker\bin\os-independant\logfilefilter\logfilefilter.php -f .\worker\worker01\conf\logfilefilter-worker01.xml 2> .\output\worker01-error.log > .\output\worker01.log

worker01.logworker01-error.log写入输出目录。

但是我需要它在一个 powershell 脚本中作为多个后台进程。可以有 n 个工作进程,在我的测试用例中有 8 个工作进程。这就是我所说的:

$strPath = get-location
$workers = get-childitem -Path worker -Filter worker*
foreach ($worker in $workers)
{
  Write-Host "Start $worker in background"

  $block = {& $args[0] $args[1] $args[2] $args[3] $args[4] $args[5] $args[6] $args[7] $args[8] $args[9] $args[10]}
  start-job -scriptblock $block -argumentlist `
    "$strPath\worker\bin\win32\php.exe", `
    "-q", `
    "-c", `
    "$strPath\worker\conf\php_win32.ini", `
    "$strPath\worker\bin\os-independant\logfilefilter\logfilefilter.php", `
    "-f", `
    "$strPath\worker\$worker\conf\logfilefilter-$worker.xml", `
    "2>", `
    "$strPath\output\$worker-error.log", `
    ">", `
    "$strPath\output\$worker.log"
}

如果我启动脚本,我可以看到 8 个 php 和 powershell 进程产生,它们立即消失。输出目录中没有日志文件。

4

1 回答 1

1

不要将重定向字符(“>”和“2>”)放在参数列表中。他们需要在脚本块中。

  $block = {& $args[0] $args[1] $args[2] $args[3] $args[4] $args[5] $args[6] 2> $args[7] > $args[8]}
  start-job -scriptblock $block -argumentlist `
    "$strPath\worker\bin\win32\php.exe", `
    "-q", `
    "-c", `
    "$strPath\worker\conf\php_win32.ini", `
    "$strPath\worker\bin\os-independant\logfilefilter\logfilefilter.php", `
    "-f", `
    "$strPath\worker\$worker\conf\logfilefilter-$worker.xml", `
    "$strPath\output\$worker-error.log", `
    "$strPath\output\$worker.log"

它是这样工作的。

于 2013-04-03T13:47:04.257 回答