我也不确定我是否做错了什么或者这是一个错误。
我想使用 bash 命令 odt2txt 将使用 Libreoffice Writer 创建的 odt 文件转换为文本文件。但是,换行符似乎无法正确处理。每个换行符都会转换为两个换行符,多个换行符也会转换为两个换行符。
例如,如果我保存了这个
This is a test
one line break before this
two line breaks before this
and three line breaks before this
使用 LO Writer 写入 test.odt,然后执行
odt2txt test.odt
我明白了
This is a test
one line break before this
two line breaks before this
and three line breaks before this
使用任何选项对我都没有任何帮助。
我在 Google 上没有找到任何关于此问题的信息,所以我想知道是否只有我一个人遇到这个问题。
更新:cat -vet output.txt 的输出,如评论中所要求的
$
This is a test$
$
one line break before this$
$
two line breaks before this$
$
and three line breaks before this$
$