Windows' findstr' command:排除包含特定字符串的结果

时间:2014-05-07 07:15:38

标签: windows command-line findstr

命令findstr str1 *.*我想添加一些内容,以排除包含字符串str2的结果。

在Linux中,这样做的方法是添加| grep -v str2(当然是grep str1 *)。 Windows中的-v是否有等效的标志?

2 个答案:

答案 0 :(得分:9)

  

Windows中是否有-v的等效标志?

等同于-v的是/V

C:\Users\Todd>findstr /?
Searches for strings in files.

...

/V         Prints only lines that do not contain a match.

答案 1 :(得分:5)

使用/V,例如:findstr "hello world" *.cpp | findstr /V ".git\\"