Assume the simple file substitution below:
get-content db.cfg | %{$_ -replace 'a', 'b'} | out-file db.cfg.new -encoding default
out-file automatically uses \r\n as a line separator. Is there a way to force a different separator (like \n)?
I'm looking for an elegant solution. Other than that, one can certainly build the whole file as a string in memory and then write it out.