How to edit a .odt file from the terminal?

9,272

Solution 1

libreoffice comes with an option to convert an odt file to plain text, which then can be edited with your preferred command-line text editor and (if wanted) converted back to odt.

  1. Convert document.odt:

    libreoffice --convert-to txt document.odt
    
  2. Edit the file with your preferred text editor, e.g.:

    gedit document.txt
    nano document.txt
    vim document.txt
    
  3. Convert it back. The --convert-to takes a filename extension as an argument, but you may also specify a filename suffix to prevent libreoffice from overwriting the original file (which it does without asking!):

    libreoffice --convert-to _new.odt document.txt
    

For the conversion there's also odt2txt, I'd just try both and compare the results.

If you're using vim you can configure it to automatically do the conversion for you in the background, see: Is it possible to easily work with .odt, .doc, .docx, .rtf, and other non-plain-text formats in Vim? The answer there uses odt2txt for the conversion, but it should be possible with libreoffice --convert-to as well.

Solution 2

The closest thing to what you're looking for is wordgrinder, a terminal-based word processor.

You can install it executing:

sudo apt install wordgrinder

Here is the official website of the project: https://cowlark.com/wordgrinder/

This is the Github repo: https://github.com/davidgiven/wordgrinder

And a quick Survival Guide: https://gist.github.com/davidgiven/1aba97e96a9b8f9b573b

If you check the Importing and Exporting sections you will find:

Importing

Imports basic content from ODT files. OpenDocument is complicated and hard to parse but WordGrinder will do its best to apply appropriate styles. Unsupported features are ignored.

Exporting

This produces an ODT file which can be read by LibreOffice and a variety of other major word processors. Character and paragraph styles are exported and are mapped to OpenDocument styles called P, H1, H2 etc.

Share:
9,272

Related videos on Youtube

Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin over 1 year

    I work a lot with LibreOffice Writer.

    I wanted to know if there was a way to edit the text through the terminal?

    • Admin
      Admin over 6 years
      I don't think this is a duplicate. This question asks if there's a text-based Terminal utility for editing .odt files. The other question is about using Terminal to launch a particular .odt file into the full graphical version of LibreOffice Writer.
    • Admin
      Admin over 6 years
      IMHO it's probably closer to this cat command doesn't show the lines of the text - which explains how to unzip an odt file to obtain the underlying content.xml file
    • Admin
      Admin over 6 years
      The closest thing to what you're looking for is wordgrinder, you can install it executing: sudo apt install wordgrinder, here is the official website of the project, hope it helps.
  • matt604
    matt604 over 3 years
    If anyone, like me, happens across this and tries wrestling this into .vimrc, this is what worked for me autocmd BufReadPost *.odt silent %!pandoc "%" -tmarkdown -o /dev/stdout autocmd BufWritePost *.odt :%!pandoc -f markdown "%" -o "%:r".odt
  • user58029
    user58029 almost 3 years
    This method ruins the .odt's format when converting from .txt to .odt if you converted the original .odt to .txt to edit, and convert it back to .odt.
  • dessert
    dessert almost 3 years
    @user58029 What do you mean by saying “ruins the .odt’s format”? I can’t test it, but I wouldn’t expect text formatting to survive the conversion. If you seek to achieve that, search for conversion to markup languages like markdown or textile instead.