Skopiuj zawartość wielu plików do jednego pliku PowerShell

Get-ChildItem d:\scripts -include *.txt -rec | ForEach-Object {gc $_; ""} | out-file d:\scripts\test.txt
Charming Cowfish