8 lines
237 B
PowerShell
8 lines
237 B
PowerShell
Write-Output "BIG MERGE!!"
|
|
Set-Content -Path "FTOptix_Combined.csv" "Location,Site,PLCName,SymbolName"
|
|
Get-ChildItem "FTOptix_Import*.csv" -Name | % {
|
|
Get-Content $_ |
|
|
Select -Skip 1 |
|
|
Add-Content -Path "FTOptix_Combined.csv"
|
|
}
|