使用Powershell计算文件夹中所有文件的单词出现次数

时间:2015-02-23 14:53:32

标签: powershell

我有很多像这样的文本文件

D1|This is text
H1|This is line 

我想计算和总结" D1"在文件夹中的所有这些文件中。

我试过

 Get-ChildItem -Filter "*.text" -Recurse | Select-String -pattern "D1" -AllMatches).matches.count

但它不起作用。

1 个答案:

答案 0 :(得分:1)

事实证明我错过了命令的左括号

 (Get-ChildItem -Filter "*.manifest" -Recurse | Select-String -pattern "D1" -AllMatches).matches.count 

对我来说很好。