FINDSTR 在多个文件中搜索字符串

FINDSTR 在多个文件中搜索字符串 

帮助信息

C:\Users\Administrator\Desktop\tmp> findstr /?
在文件中寻找字符串。

FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:file] 
        [/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]]
        strings [[drive:][path]filename[ ...]]

  /B         在一行的开始配对模式。
  /E         在一行的结尾配对模式。
  /L         按字使用搜索字符串。
  /R         将搜索字符串作为一般表达式使用。
  /S         在当前目录和所有子目录中搜索匹配文件。
  /I         指定搜索不分大小写。
  /X         打印完全匹配的行。
  /V         只打印不包含匹配的行。
  /N         在匹配的每行前打印行数。
  /M         如果文件含有匹配项,只打印其文件名。
  /O         在每个匹配行前打印字符偏移量。
  /P         忽略有不可打印字符的文件。
  /OFF[LINE] 不跳过带有脱机属性集的文件。
  /A:attr    指定有十六进位数字的颜色属性。请见 "color /?"
  /F:file    从指定文件读文件列表 (/ 代表控制台)。
  /C:string  使用指定字符串作为文字搜索字符串。
  /G:file    从指定的文件获得搜索字符串。(/ 代表控制台)。
  /D:dir     查找以分号为分隔符的目录列表
  strings    要查找的文字。
  [drive:][path]filename
             指定要查找的文件。

除非参数有 /C 前缀,请使用空格隔开搜索字符串。
例如: 
'FINDSTR "hello there" x.y' 在文件 x.y 中寻找 "hello" 或 "there"。
'FINDSTR /C:"hello there" x.y' 在文件 x.y 中寻找 "hello there"。

一般表达式的快速参考:
  .        通配符: 任何字符
  *        重复: 以前字符或类出现零或零以上次数
  ^        行位置: 行的开始
  $        行位置: 行的终点
  [class]  字符类: 任何在字符集中的字符
  [^class] 补字符类: 任何不在字符集中的字符
  [x-y]    范围: 在指定范围内的任何字符
  \x       Escape: 元字符 x 的文字用法
  \<xyz    字位置: 字的开始
  xyz\>    字位置: 字的结束

有关 FINDSTR 常见表达法的详细情况,请见联机命令参考。

简单示例

(1)查找 a.txt 文件中以 “I” 开始的行,如下:

C:\Users\Administrator\Desktop\tmp> findstr /B "^I" a.txt
I have dreamed a romantic encounter
I have imagined an endless wander   
I have wondered a moving love-letter

(2)查找 a.txt 文件中以 “er” 结尾的行,如下:

C:\Users\Administrator\Desktop\tmp> findstr /E "er$" a.txt
I have dreamed a romantic encounter
I have imagined an endless wander   
I have wondered a moving love-letter

(3)查找 a.txt 文件中有 “i” 的行(忽略大小写),如下:

C:\Users\Administrator\Desktop\tmp> findstr /I "i" a.txt
I have dreamed a romantic encounter
I have imagined an endless wander   
I have wondered a moving love-letter
But then, i never met you

(4)在匹配的行前面添加行数,如下:

C:\Users\Administrator\Desktop\tmp> findstr /N /I "i" a.txt 
1:I have dreamed a romantic encounter
2:I have imagined an endless wander
3:I have wondered a moving love-letter
4:But then, i never met you

(5)在 a.txt 文件中搜索 “I have” 字符串,而不是分别搜索 “I” 和 “have”。如下:

C:\Users\Administrator\Desktop\tmp> findstr /N /I /C:"i have" a.txt 
1:I have dreamed a romantic encounter
2:I have imagined an endless wander
3:I have wondered a moving love-letter
关于
本网站专注于 Java、数据库(MySQL、Oracle)、Linux、软件架构及大数据等多领域技术知识分享。涵盖丰富的原创与精选技术文章,助力技术传播与交流。无论是技术新手渴望入门,还是资深开发者寻求进阶,这里都能为您提供深度见解与实用经验,让复杂编码变得轻松易懂,携手共赴技术提升新高度。如有侵权,请来信告知:hxstrive@outlook.com
公众号