"new.csv" Wh..." /> "new.csv" Wh..." /> "new.csv" Wh..."/>

Codepage 1252 file conversion

325 Views Asked by At

I am migrating a script from Windows to Linux. The Windows script is doing the following conversion:

chcp 1252

type "source.csv" > "new.csv"

What is the equivalent command to perform the conversion on Linux?

1

There are 1 best solutions below

0
On BEST ANSWER

Thanks, this worked for me

iconv -f UTF-16 -t WINDOWS-1252 -o new.csv source.csv