PowerShell: Join Files

By Xah Lee. Date: .

Join Files

# join all files in a dir into single file

Get-Content ~/manual/* -Filter *html -Raw | Set-Content -NoNewline new.html

PowerShell, Working on Files