码迷,mamicode.com
首页 > 其他好文 > 详细

Dos命令findstr及fc

时间:2014-07-21 11:43:15      阅读:259      评论:0      收藏:0      [点我收藏+]

标签: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

标签:findstr   fc   

原文地址:http://blog.csdn.net/dacxu/article/details/25230909

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!