gpt4 book ai didi

powershell - 根据匹配的列拆分 csv 文件

转载 作者:行者123 更新时间:2023-12-02 00:27:20 25 4
gpt4 key购买 nike

我有一个名为 test.csv 的文件,文件中的数据如下所示:

ServerName,Software
"server1.domain.com","Security Update for Windows Server 2003 (KB890046)"
"server1.domain.com","Security Update for Windows Server 2003 (KB893756)"
"server2.domain.com","Microsoft .NET Framework 3.5 SP1"
"server2.domain.com","Microsoft SQL Server 2005"
"server3.domain.com","Security Update for Windows Server 2003 (KB916281)"
"server3.domain.com","Security Update for Windows Server 2003 (KB917159)"

我想将它拆分为每个服务器的文件,使用“ServerName”作为文件名并包含“软件”列中的数据

我希望输出看起来像这样:

file: server1.domain.com.csv

Security Update for Windows Server 2003 (KB890046)
Security Update for Windows Server 2003 (KB893756)


file: server2.domain.com.csv

Microsoft .NET Framework 3.5 SP1
Microsoft SQL Server 2005"


file: server3.domain.com.csv

Security Update for Windows Server 2003 (KB916281)
Security Update for Windows Server 2003 (KB917159)

我是 Powershell 的新手,不知道如何操作。谢谢。

最佳答案

试试这个,按 ServerName 对内容进行分组。 Foreach 组选择软件属性并将其导出到一个 csv 文件,其中包含每个服务器的名称:

Import-Csv test.csv | Group-Object ServerName | Foreach-Object{
$_.Group | Select-Object Software | Export-Csv "$($_.Name).csv" -NoTypeInformation
}

关于powershell - 根据匹配的列拆分 csv 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8413805/

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