我几天前开始学习powershell,我在谷歌上找不到任何我需要的东西,所以请忍受我的问题。

我被要求将一些文本字符串替换为多个文件。我不一定知道可能的目标文件的扩展名,我也不知道它们的位置。到目前为止,我已经成功递归地浏览到目录(get-ChildItem -recurse),并找到我正在寻找的字符串get-content和select-string:

Get-ChildItem -recurse | Get-Content | Select-String -pattern "dummy"

问题是,我可以看到我正在寻找的文本的出现,但我不知道如何告诉PS返回每个匹配文件的路径和名称。

如何获得包含我正在寻找的表达式的文件的名称和位置?


当前回答

这应该会给出包含你的模式的文件的位置:

Get-ChildItem -Recurse | Select-String "dummy" -List | Select Path

其他回答

这应该会给出包含你的模式的文件的位置:

Get-ChildItem -Recurse | Select-String "dummy" -List | Select Path

管道的内容

Get-ChildItem -recurse | Get-Content | Select-String -pattern "dummy"

您将看到路径已经作为对象的属性返回。

如果你只想要路径,使用select path或select -unique path删除重复项:

Get-ChildItem -recurse | Get-Content | Select-String -pattern "dummy" | select -unique path

我修改了上面的一个答案,以提供更多的信息。这样我就不用再问了。大概是这样的:

Get-ChildItem `
        -Path "C:\data\path" -Filter "Example*.dat" -recurse | `
    Select-String -pattern "dummy" | `
    Select-Object -Property Path,LineNumber,Line | `
    Export-CSV "C:\ResultFile.csv"

我可以用这个结构指定路径和文件通配符,它将文件名、行号和相关行保存到输出文件中。

这就是我要做的,你不需要get-content:

ls -r | Select-String dummy | select line,path

or

ls -r | Select-String dummy | fl *

看看不同的属性是什么…

这个更快。第二个参数是-filter:

ls -r . *.bat | select-string netsh

ls -r -path . -filter *.bat | select-string netsh

这将显示与模式匹配的路径、文件名和内容行。

Get-ChildItem -Path d:\applications\*config -recurse |  Select-String -Pattern "dummy"