首页 > 代码库 > Dos命令findstr及fc

Dos命令findstr及fc

在分析或编写代码的过程中,经常需要在文件中查找字符串或对两个文件进行比较。Linux下常用的命令是grep和diff。Windows下文件比较有比较好的开源工具,如WinMerge。在文件中寻找字符串不清楚是否有好的开源工具。最近发现windows居然有dos命令可以满足需求。


findstr:在文件中寻找字符串。

 /S         在当前目录和所有子目录中搜索匹配文件。

 /C:string  使用指定字符串作为文字搜索字符串。


<b>Examples</b>

01:
findstr "computer help" myfile.txt
输出myfile.txt中包含computer或help字符串的行到dos控制台上。


02:
findstr /s "computer help" *.txt
与上例类似, 在当前目录及子目录txt文件中寻找包含computer和help字符串。


03:
findstr /s /c:"computer help" *.txt
在当前目录及子目录txt文件中寻找包含“computer help”字符串。



fc: 比较两个文件或文件集之间的不同

<b>Examples</b>

fc file1 file2

Dos命令findstr及fc