Need to club all the CSV data into a single CSV

Need to club all the CSV data into a single CSV. Culumn headers are same for all the CSVs

-Biswajit

$sources = '.\file1.csv','.\file2.csv','.\file3.csv'
$sources | Import-Csv | Export-Csv '.\output.csv' -NoTypeInformation

There’s also an -Append switch to Export-Csv, but you don’t need it if everything’s in one pipeline like that.

Thanks Dave.