📜  powershell 中的搜索命令 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:31.700000             🧑  作者: Mango

代码示例1
grep (options) files.txt. ...
grep "text I search" *.log. ...
Select-String -Path C:\temp\*.log -Pattern "Contoso" ...
Get-ChildItem C:\temp -Filter *.log -Recurse | Select-String "Contoso"