gpt4 book ai didi

Powershell - 使用 Get-ChildItem 在文件中搜索时出现奇怪的输出

转载 作者:行者123 更新时间:2023-12-02 23:04:44 25 4
gpt4 key购买 nike

我有一个问题,我希望有人能帮助我......

我有一个包含以下行的 powershell 脚本:

$output = Get-ChildItem -path $target -recurse | Select-String -pattern hello | group path | select name
Write-Output "Output from the string match is $output"

我得到的错误:

Output from the string match Microsoft.Powershell.Commands.GroupInfo Microsoft.Powershell.Commands.GroupInfo

当我单独运行此命令(即不在脚本中)时,它运行良好,并返回该位置的两个文件,其中包含单词“hello”。

它似乎知道它找到了两件事,因为它打印了两次“Microsoft.Powershell.Commands.GroupInfo”文本(如上错误所示)。但是为什么它打印这个而不是它应该打印的文件路径呢?

一定有一些明显的东西我忽略了,但我不知道是什么。

非常感谢您的帮助,谢谢

最佳答案

你看到这个的原因是因为 $output 是 Selected.Microsoft.PowerShell.Commands.GroupInfo 对象的数组——传递给 Select-Object 时由 Group-Object 返回的对象(没有 Select-Object 他们会只是 Microsoft.PowerShell.Commands.GroupInfo 对象)。您可以通过运行以下命令来确认 $ouput 中对象的类型:

$output | Get-Member

检查显示在输出顶部的 TypeName。

当您在控制台中以交互方式运行这些命令时,您会看到路径,因为 PowerShell 知道如何在控制台中显示 GroupInfo 对象,以便它们是人类可读的。请注意,当您在控制台中调用 $output 时,您会看到一个带有下划线的“名称”标题 - 这是 PowerShell 解释您提供的 GroupInfo 对象并在控制台中为您显示名称属性。

当您尝试在字符串中输出 $output 数组时会出现问题。然后 PowerShell 无法使用其更高级的格式化逻辑,而只是尝试将对象转换为字符串以插入到您的字符串中。当它这样做时,它没有足够的逻辑来知道你真正想要出现在你的字符串中的是这些 GroupInfo 对象的 Name 属性,所以如果只是打印出一个字符串,其中包含每个对象的类型名称在 $output 数组中。这就是为什么您会看到两次类型名称的原因。

此问题的简单解决方案是 Select-Object 的 -ExpandProperty 参数。这就是它所说的 - 它扩展您使用 Select-Object 请求的属性并返回该属性,而不是父对象。所以 GroupInfo 对象的 Name 属性是一个字符串。如果您调用 Select-Object Name,您将获得一个具有 Name 属性的 GroupInfo 对象。如果您调用 Select-Object -ExpandProperty Name,您只会获得作为 String 对象的 Name 属性。在这种情况下,这正是您想要的。

所以试试这个:

$output = Get-ChildItem -path $target -recurse | Select-String -pattern hello | group path | select -ExpandProperty name

关于Powershell - 使用 Get-ChildItem 在文件中搜索时出现奇怪的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18336564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com