Text-Processing

來自 Mac 的 .txt 文件無法正確轉換

  • May 27, 2015

我有一個來自我的 Mac 的 .txt 文件,當我將它發送到執行 Raspbian 的 Raspberry Pi 並在 nano 中打開它時,它會奇怪地轉換。例子:

Mac OSX 中的文本文件:

http://welcome.hp.com/country/us/en/prodserv/servers.html
http://www8.hp.com/us/en/products/data-storage/overview.html

Raspbian 中的文本文件:

Servers & Blades
Storage
http://welcome.hp.com/country/us/en/prodserv/servers.html^Mhttp://www8.hp.com/us/en/products/data-storage/overview.html        

任何幫助表示讚賞。

sed -i 's/\r/\n/g' thefile.txt

\r用作行尾字元的“經典”macos 。*nix 使用\n

引用自:https://unix.stackexchange.com/questions/205760