标签: powershell powershell-3.0
我有两个 html 报告。需要将这两个报告合并为一个。
(Get-Content "C:\TEMP\File1.html") + (Get-Content "C:\TEMP\File2.html") | Set-Content "C:\TEMP\Combined.html
上面的代码工作正常。合并时2个html报告之间没有差距。
有没有办法在 2 个合并报告之间留出空间?