Pentaho 中的 PowerShell 脚本
PowerShell script in Pentaho
我想使用 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}"
但是没用。
请找出错误如下:
可以使用 "Get Files Rows Count" 步骤吗?这样就可以跨平台了。
我想使用 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}"
但是没用。
请找出错误如下:
可以使用 "Get Files Rows Count" 步骤吗?这样就可以跨平台了。