[powershell] grep -f와 동등한 PowerShell

에 해당하는 PowerShell을 찾고 grep --file=filename있습니다. 을 모르는 grep경우 filename은 각 줄에 일치시킬 정규 표현식 패턴이있는 텍스트 파일입니다.

어쩌면 나는 분명한 것을 놓치고 있지만 Select-String이 옵션이없는 것 같습니다.



답변

-Pattern매개 변수 Select-String는 패턴 배열을 지원합니다. 그래서 당신이 찾고있는 것은 :

Get-Content .\doc.txt | Select-String -Pattern (Get-Content .\regex.txt)

이것은 doc.txt모든 정규 표현식 (한 줄에 하나씩)을 사용하여 텍스트 파일 을 검색합니다.regex.txt


답변

PS) new-alias grep findstr
PS) C:\WINDOWS> ls | grep -I -N exe

105:-a---        2006-11-02     13:34      49680 twunk_16.exe
106:-a---        2006-11-02     13:34      31232 twunk_32.exe
109:-a---        2006-09-18     23:43     256192 winhelp.exe
110:-a---        2006-11-02     10:45       9216 winhlp32.exe

PS) grep /?


답변

grep에 익숙하지 않지만 Select-String을 사용하면 다음을 수행 할 수 있습니다.

Get-ChildItem filename.txt | Select-String -Pattern <regexPattern>

Get-Content를 사용하여이를 수행 할 수도 있습니다.

(Get-Content filename.txt) -match 'pattern'


답변

그래서 나는이 링크에서 꽤 좋은 대답을 찾았습니다 :
https://www.thomasmaurer.ch/2011/03/powershell-search-for-string-or-grep-for-powershell/

그러나 본질적으로 다음과 같습니다.

Select-String -Path "C:\file\Path\*.txt" -Pattern "^Enter REGEX Here$"

이렇게하면 grep과 매우 유사한 PowerShell 한 줄로 디렉터리 파일 검색 (또는 파일을 지정할 수 있음)과 파일 내용 검색이 모두 제공됩니다. 출력은 다음과 유사합니다.

doc.txt:31: Enter REGEX Here
HelloWorld.txt:13: Enter REGEX Here


답변

이 질문에는 이미 답변이 있지만 Windows에는 Linux WSL 용 Windows 하위 시스템이 있음을 추가하고 싶습니다. .

예를 들어, Elasicsearch 라는 서비스 가 실행중인 상태 인지 확인하려는 경우 powershell에서 아래 스 니펫과 같은 작업을 수행 할 수 있습니다.

net start | grep Elasticsearch


답변

powershell을 사용하여 파일에서 텍스트를 찾으려고 동일한 문제가 발생했습니다. 나는 리눅스 환경에 최대한 가깝게 유지하기 위해 다음을 사용했다.

잘하면 이것은 누군가를 돕는다.

PowerShell :

PS) new-alias grep findstr
PS) ls -r *.txt | cat | grep "some random string"

설명:

ls       - lists all files
-r       - recursively (in all files and folders and subfolders)
*.txt    - only .txt files
|        - pipe the (ls) results to next command (cat)
cat      - show contents of files comming from (ls)
|        - pipe the (cat) results to next command (grep)
grep     - search contents from (cat) for "some random string" (alias to findstr)

예, 다음과 같이 작동합니다.

PS) ls -r *.txt | cat | findstr "some random string"


답변

그러나 select-String에는이 옵션이없는 것 같습니다.

옳은. PowerShell은 아닙니다 * nix shells 툴셋의 복제본 .

그러나 자신과 같은 것을 만드는 것은 어렵지 않습니다.

$regexes = Get-Content RegexFile.txt |
           Foreach-Object { new-object System.Text.RegularExpressions.Regex $_ }

$fileList | Get-Content | Where-Object {
  foreach ($r in $regexes) {
    if ($r.IsMatch($_)) {
      $true
      break
    }
  }
  $false
}