[windows] Windows 재귀 grep 명령 줄

Windows에서 재귀 grep을 수행해야합니다. Unix / Linux에서는 다음과 같습니다.

grep -i 'string' `find . -print`

또는 더 선호되는 방법 :

find . -print | xargs grep -i 'string'

cmd.exe 만 붙어 있으므로 Windows 기본 제공 명령 만 있습니다. 불행히도이 서버에 Cygwin 또는 UnxUtils 와 같은 타사 도구를 설치할 수 없습니다 . PowerShell을 설치할 수 있는지 확실하지 않습니다. cmd.exe 내장 (Windows 2003 Server) 만 사용하는 제안이 있습니까?



답변

findstr 재귀 검색 (/ S)을 수행 할 수 있으며 일부 정규 표현식 구문 (/ R)을 지원합니다.

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

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         Matches pattern if at the beginning of a line.
  /E         Matches pattern if at the end of a line.
  /L         Uses search strings literally.
  /R         Uses search strings as regular expressions.
  /S         Searches for matching files in the current directory and all
             subdirectories.
  /I         Specifies that the search is not to be case-sensitive.
  /X         Prints lines that match exactly.
  /V         Prints only lines that do not contain a match.
  /N         Prints the line number before each line that matches.
  /M         Prints only the filename if a file contains a match.
  /O         Prints character offset before each matching line.
  /P         Skip files with non-printable characters.
  /OFF[LINE] Do not skip files with offline attribute set.
  /A:attr    Specifies color attribute with two hex digits. See "color /?"
  /F:file    Reads file list from the specified file(/ stands for console).
  /C:string  Uses specified string as a literal search string.
  /G:file    Gets search strings from the specified file(/ stands for console).
  /D:dir     Search a semicolon delimited list of directories
  strings    Text to be searched for.
  [drive:][path]filename
             Specifies a file or files to search.

Use spaces to separate multiple search strings unless the argument is prefixed
with /C.  For example, 'FINDSTR "hello there" x.y' searches for "hello" or
"there" in file x.y.  'FINDSTR /C:"hello there" x.y' searches for
"hello there" in file x.y.

Regular expression quick reference:
  .        Wildcard: any character
  *        Repeat: zero or more occurrences of previous character or class
  ^        Line position: beginning of line
  $        Line position: end of line
  [class]  Character class: any one character in set
  [^class] Inverse class: any one character not in set
  [x-y]    Range: any characters within the specified range
  \x       Escape: literal use of metacharacter x
  \<xyz    Word position: beginning of word
  xyz\>    Word position: end of word

For full information on FINDSTR regular expressions refer to the online Command
Reference.


답변

findstr /spin /c:"string" [files]

매개 변수는 다음과 같은 의미를 갖습니다.

  • s = 재귀
  • p = 인쇄 할 수없는 문자 건너 뛰기
  • i = 대소 문자 구분
  • n = 인쇄 라인 번호

그리고 검색 할 문자열은 따옴표로 묶은 비트입니다. /c:


답변

방금 지정된 ‘검색 텍스트’를 포함하는 모든 파일 이름을 나열한 다음 명령으로 텍스트를 검색했습니다.

C:\Users\ak47\Desktop\trunk>findstr /S /I /M /C:"search text" *.*


답변

정말 훌륭한 도구를 추천합니다 :

네이티브 유닉스 유틸리티 :

그것들을 풀고 그 폴더를 PATH 환경 변수와 짜잔에 넣으십시오! 🙂

매력처럼 작동하며 grep보다 훨씬 많은 것이 있습니다.)


답변

폴더 import내 단어를 재귀 적으로 검색 src:

> findstr /s import .\src\*


답변

for /f %G in ('dir *.cpp *.h /s/b') do  ( find /i "what you search"  "%G") >> out_file.txt


답변

Select-String나를 위해 가장 잘 작동했습니다. 와 같이 여기에 나열된 다른 모든 옵션 findstr은 큰 파일에서 작동하지 않았습니다.

예를 들면 다음과 같습니다.

select-string -pattern "<pattern>" -path "<path>"

참고 : 여기에는 Powershell이 ​​필요합니다