Pentaho中的PowerShell脚本

时间:2017-08-16 08:15:07

标签: powershell pentaho pentaho-spoon

我想使用PowerShell脚本来计算文本文件中的行。我使用这段代码:

Set-Location -Path D:\
$measure = Get-Content b27.csv | Measure-Object 
$lines = $measure.Count
echo "line count is: ${lines}"

然而,我有错误。我认为没有什么可以告诉pentaho执行PowerShell脚本

之后我尝试添加此代码

powershell.exe -ExecutionPolicy Bypass [D:\]
call Set-Location -Path D:\
call $measure = Get-Content b27.csv | Measure-Object 
call  $lines = $measure.Count
call echo "line count is: ${lines}"

但它不起作用。

请查看以下错误:

error message

1 个答案:

答案 0 :(得分:0)

您可以使用“获取文件行计数”步骤吗?这将是跨平台的。