Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我不时在 Linux 上做一些工作,今天我需要记录一些从终端窗口复制的文本文件。唯一的问题是我在我的 Win7 计算机上将一个 linux 文本文件带到了记事本上,我注意到所有回车符都从文本中删除了。
有什么方法可以快速添加回车符?
使用记事本++ 而不是记事本。它是免费的,并且具有很多功能,包括正确处理 EOL 标记。
您可以在传输前进行转换:
unix2dos -o <pattern>
如果您需要保留旧文件或者您只有读取权限:
unix2dos -n <original-file> <converted-file>
默认情况下,您的 linux 发行版中可能没有此实用程序可用,在这种情况下,您需要安装该tofrodos软件包。
tofrodos