I need to concatenate some relatively large text files, and would prefer to do this via the command line. Unfortunately I only have Windows, and cannot install new software.
In powershell:
Get-Content file1.txt | Out-File out.txt Get-Content file2.txt | Select-Object -Skip 1 | Out-File -Append out.txt