Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

odt2txt.odt2txt(1) [debian man page]

ODT2TXT(1)							   User Commands							ODT2TXT(1)

NAME
odt2txt - a simple converter from OpenDocument Text to plain text SYNOPSIS
odt2txt [OPTIONS] FILENAME DESCRIPTION
odt2txt is a command-line tool which extracts the text out of OpenDocument Texts, as produced by OpenOffice.org, KOffice, StarOffice and others. odt2txt can also extract text from some file formats similar to OpenDocument Text, such as OpenOffice.org XML (*.sxw), which was used by OpenOffice.org version 1.x and older StarOffice versions. To a lesser extend, odt2txt may be useful to extract content from OpenDocument spreadsheets (*.ods) and OpenDocument presentations (*.odp). The FILENAME argument is mandatory. OPTIONS
--width=WIDTH Wrap text lines after WIDTH characters. The default value is 65, which means that any words which would extend beyond column 65 are moved to a new line. If WIDTH is set to -1 then no lines will be broken --output=FILE Write output to FILE and not to standard output. --subst=SUBST Select which non-ascii characters shall be replaced by ascii look-a-likes. Valid values for SUBST are all, some and none. --subst=all Substitute all characters for which substitutions are known --subst=some Substitute all characters which the output charset does not contain This is the default --subst=none Substitute no characters --encoding=X Do not try to autodetect the terminal encoding, but convert the document to encoding X unconditionally To find out, which terminal encoding will be used in automatic mode, use --encoding=show --raw Print raw XML --version Show version and copyright information COPYRIGHT
Copyright (C) 2006,2007 Dennis Stosberg <dennis@stosberg.net> Uses parts of the kunzip library, Copyright 2005,2006 by Michael Kohn This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2 as published by the Free Software Foundation SEE ALSO
Homepage http://stosberg.net/odt2txt/ odt2txt 0.4 2008-06-23 ODT2TXT(1)

Check Out this Related Man Page

RDF::RDFa::Parser::OpenDocumentObjectModel(3pm) 	User Contributed Perl Documentation	   RDF::RDFa::Parser::OpenDocumentObjectModel(3pm)

NAME
RDF::RDFa::Parser::OpenDocumentObjectModel - DOM representation of an OpenDocument Format 1.2 file DESCRIPTION
You should hopefully not need to use this module to be able to use RDF::RDFa::Parser. It's used internally by the parser to deal with OpenDocument Format input. This class provides a "new" constructor and "parse_file", "parse_fh" and "parse_string" methods offering rought compatibility with the parsing interface described in XML::LibXML::Parser. It represents an OpenDocument Format 1.2 file (internally a ZIP file containing various XML, RDF/XML and other files) into a single XML::LibXML::Document with a root element "od:Document". The root element has several child elements with tag names "od:Data" and "od:Meta" which each contain a single child corresponding to the root element of (respectively) an XML or RDF/XML file found inside the ZIP. ("od:Data" and "od:Meta" elements each have a "file" attribute indicating which file.) This representation is necessarily different to the "Flat XML" format offered by OpenOffice - trust me. The "od" namespace URI is http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Parser/opendocument-dom-wrapper <http://purl.org/NET/cpan- uri/dist/RDF-RDFa-Parser/opendocument-dom-wrapper>. SEE ALSO
RDF::RDFa::Parser. XML::LibXML::Parser, HTML::HTML5::Parser. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT AND LICENCE
Copyright 2008-2012 Toby Inkster This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.14.2 2012-06-05 RDF::RDFa::Parser::OpenDocumentObjectModel(3pm)
Man Page