Questions tagged «end-of-line»

8
如何在Unix行尾(CR / LF到LF)中转换Windows行尾
我是Java开发人员,正在使用Ubuntu进行开发。该项目是使用Eclipse在Windows中创建的,并且使用Windows-1252编码。 要转换为UTF-8,我使用了重新编码程序: find Web -iname \*.java | xargs recode CP1252...UTF-8 此命令给出此错误: recode: Web/src/br/cits/projeto/geral/presentation/GravacaoMessageHelper.java failed: Ambiguous output in step `CR-LF..data 我已经搜索了它,并在Bash和Windows中获得了解决方案,重新编码:在“ data..CR-LF”步骤中的输出模棱两可,它说: 将行尾从CR / LF转换为单个LF:使用Vim编辑文件,输入命令:set ff=unix并保存文件。现在重新编码应该可以正常运行。 很好,但是我有很多文件要从中删除CR / LF字符,我无法打开每个文件来完成。Vi不为Bash操作提供任何命令行选项。 sed可以用来做到这一点吗?怎么样?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.