Penguin
Note: You are viewing an old revision of this page. View the current version.

odt2txt is a utility for converting OpenOffice.org word processor documents to plaintext files. To convert a large number of documents, use the following command:

find -name '*.odt' -print0 | xargs -r0 bash -c 'for odt in "$@"; do odt2txt.py "$odt" > "${odt%.odt}.txt"; done' --