对命令findstr str1 *.*
我想添加一些东西,将排除包含stringstr2
的结果。
在Linux中,这样做的方式是添加| grep -v str2
| grep -v str2
(当然grep str1 *
)。 Windows中是否存在与-v
相同的标志?
Windows中是否存在与
-v
相同的标志?
相当于-v
是/V
C:\Users\Todd>findstr /? Searches for strings in files. ... /V Prints only lines that do not contain a match.
使用/V
,例如: findstr "hello world" *.cpp | findstr /V ".git\\"
findstr "hello world" *.cpp | findstr /V ".git\\"