sed编辑的文件与windows不兼容

时间:2013-07-24 08:43:47

标签: windows sed mingw

我使用sed -i编辑Windows上的一些文件。之后,Windows无法识别文件。似乎sed使用了除CR-LF之外的换行。如何告诉sed使用CR-LF作为换行?感谢。

1 个答案:

答案 0 :(得分:3)

指定-b选项以保留CR-LF行结尾。

sed --help会告诉你:

  -b, --binary
                 open files in binary mode (CR+LFs are not processed specially)