请解释特定代码行上的powershell脚本错误

时间:2017-07-04 07:20:32

标签: powershell

我在.ps1文件中的以下行收到错误。

代码:

Import-Csv $csvPath `| ? { $_.Datum -ne $date } `| Export-Csv $csvTempPath -NoTypeInformation

错误:

Import-Csv : A positional parameter cannot be found that accepts argument '?'.

1 个答案:

答案 0 :(得分:0)

我已经解决了问题。这是间距问题,我在代字号和管道标志之间添加了一个空格。

Import-Csv $csvPath ` | ? { $_.Datum -ne $date } ` | Export-Csv $csvTempPath -NoTypeInformation

现在它运作正常。谢谢!