產生CLXML文件後:替換CLXML文件中的新行
[string]$myString = 'foobar' | Export-Clixml -Path C:\Files\test.clxml
我試圖刪除線咫尺錨>
後壞。我曾嘗試:
(Get-Content C:\Files\test.clxml) -replace "`n", "" | Set-Content C:\Files\test.clxml
使用-replace r
也試過,但這個從文件中剝離出來r
字符。
我在做什麼錯?
頂一個工作正常。 – LightningWar