Quantcast
Channel: PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources: Active Threads
Viewing all articles
Browse latest Browse all 8411

Merge Multiple CSV files.

$
0
0

I want to merge these files and get in a single CSV as shown in below example


CSV File 1
==========

Hosts ABC DEF
===== === ===
SVR01 10 100
SRV02 22 99



CSV File 2
==========

Hosts ABC DEF
===== === ===
SVR03 13 10.5
SRV04 19 8.9


CSV File 3
==========

Hosts ABC DEF
===== === ===
SVR05 11 12.5
SRV06 13 8.4



Expected output
===============

Hosts ABC DEF
===== === ===
SVR01 10 100
SRV02 22 99
SVR03 13 10.5
SRV04 19 8.9
SVR05 11 12.5
SRV06 13 8.4


Viewing all articles
Browse latest Browse all 8411

Trending Articles