回答:
の-Pattern
パラメータはSelect-String
、パターンの配列をサポートしています。だからあなたが探しているのは:
Get-Content .\doc.txt | Select-String -Pattern (Get-Content .\regex.txt)
これは、doc.txt
すべての正規表現(1行に1つ)を使用してテキストファイルを検索します。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 /?
findstr
最もよくgrep
機能することです。Select-String
オブジェクトの操作には最適ですが、文字列を照合したい場合もあります。
findstr
PowerShellに固有のものではなく、コマンドプロンプトです。
私はgrepに詳しくありませんが、Select-Stringを使用すると次のことができます。
Get-ChildItem filename.txt | Select-String -Pattern <regexPattern>
Get-Contentでもこれを行うことができます。
(Get-Content filename.txt) -match 'pattern'
dir *.cs -Recurse | sls "TODO" | select -Unique "Path"
。優れたポインタのThx。
だから私はこのリンクでかなり良い答えを見つけました: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の1行で、ディレクトリファイル検索(*または単にファイルを指定できます)とファイルコンテンツ検索を実行できます。出力は次のようになります。
doc.txt:31: Enter REGEX Here
HelloWorld.txt:13: Enter REGEX Here
PowerShellでファイル内のテキストを検索しようとすると、同じ問題が発生しました。私は以下を使用しました-Linux環境にできる限り近づけるため。
うまくいけば、これは誰かを助ける:
パワーシェル:
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シェルのツールセットのクローンで。
ただし、このようなものを自分で構築することは難しくありません。
$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
}
Select-String -Pattern somestring
はるかにきれい