PowerShell menambahkan file ke file lain

Get-Content inputFile1.txt, inputFile2.txt | Set-Content joinedFile.txt

# Also supports wildcards
Get-Content inputFile*.txt | Set-Content joinedFile.txt
Muddy Moose