↧
Answer by Adi Inbar for Preserve Line Feeds and Carriage Returns Powershell
The problem is that by piping the output of Get-Content, you're ripping the file into individual lines, and then Set-Content combines those line into a new file. Since CR/LF is the way lines are...
View ArticlePreserve Line Feeds and Carriage Returns Powershell
I have a csv file originated from Linux Server, so they contains \n to mark the ending of a line. Now I process this file through a powershell script and replace it's 'text qualifier' to something...
View Article