linux和Dos下换行符转换

Linux下换行符之间的转换:

  Unix 系统里,每行结尾只有“<换行>”,即“\n”;Windows系统里面,每行结尾是“ <回车><换行>”,即“ \r\n”;Mac系统里,每行结尾是“<回车>”。

  在Windows系统里用notepad++打开:Unix换行为"LF",Windows换行为"CR LF",Mac换行为"CR"。

  注:notepad++可以实现Unix、Windows、Mac格式之间的互换。

1.Windows --> Unix:dos2unix test.txt

2.Unix --> Windows:unix2dos test.txt

3.Mac --> Unix:tr "\r" "\n" < macfile > unixfile 

posted @ 2017-05-04 14:05  龍清扬  阅读(422)  评论(0编辑  收藏  举报