Answers:
中的-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 /?
findstr
它最像grep
Linux上那样工作。Select-String
非常适合使用对象,但是有时您只想匹配字符串。
findstr
它不是PowerShell的本机,而是Command Prompt。
我对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$"
这样就可以在PowerShell的一行中进行目录文件搜索(*或您可以只指定一个文件)和文件内容搜索,这与grep非常相似。输出将类似于:
doc.txt:31: Enter REGEX Here
HelloWorld.txt:13: Enter REGEX Here
这个问题已经有了答案,但是我只想补充一点,在Windows中有适用于Linux WSL的 Windows子系统。
因此,例如,如果您要检查是否有名为Elasicsearch的服务处于运行状态,则可以在powershell中执行以下代码段
net start | grep Elasticsearch
我在尝试使用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 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
}
Select-String -Pattern somestring
更干净