Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

catppt(1) [debian man page]

ppt2text(1)						      General Commands Manual						       ppt2text(1)

NAME
catppt - reads MS-PowerPoint file and puts its content on standard output SYNOPSIS
catppt [-lV] [-b string ] [-s charset ] [-d charset ] files DESCRIPTION
catppt reads MS-PowerPoint presentations and dumps its content to stdout. OPTIONS
-l list known charsets and exit successfully -bstring slides break string. This string (by default - formfeed) would be output at the end of each slide page. -dcharset` - specifies destination charset name. Charset file has format described in CHARACTER SETS section of catdoc(1) manual page. By default, current locale charset would be used if langinfo support was enabled at the compile time. -scharset - specifies source charset. Typically, PowerPoint files use UNICODE strings with known charsets, but for some reason you may wish to override it. -V outputs version number SEE ALSO
cat(1), catdoc(1), xls2csv(1), strings(1), utf(4), unicode(4) AUTHOR
Alex Ott <alexott@gmail.com> MS-PowerPoint reader Version 0.94.4 ppt2text(1)

Check Out this Related Man Page

CHANGE-PO-CHARSET(1)					      General Commands Manual					      CHANGE-PO-CHARSET(1)

NAME
change-po-charset - change the charset value in content-type header of a gettext po file SYNOPSIS
change-po-charset <charset> FILENAME1 [ FILENAME2 ...] DESCRIPTION
change-po-charset is a simple Perl script, which reads the specified file names, and prints them on standard output, making only the fol- lowing modification. In the first msgstr string sequence it encounters, it changes the "charset" attribute of the Content-Type header to the charset specified as the first parameter. Please note that it does not actually change any character encoding of the contents of the data. It is used by potooledit(1) to fix the content-type header after it recodes the file with iconv(1). SEE ALSO
potooledit(1), iconv(1), msgmerge(1), msgfmt(1). AUTHOR
change-po-charset was written by Marcin Owsiany <porridge@debian.org>. September 21, 2007 CHANGE-PO-CHARSET(1)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Unix charset

Hi, How can I find out the charset on a Unix server (SUNOS 5.2)? I tried locale charmap and returned 646. What does 646 mean? If I send an xml file with encoding="utf-8", should the server be able to handle the file, even with special characters in it? Thanks. (0 Replies)
Discussion started by: iengca
0 Replies

2. UNIX for Dummies Questions & Answers

xls2csv.py won't print to outfile

Hi, I'm trying to use pyExcelerator's module "xls2csv" converter in ubuntu. The following works great, except the standard out is in the terminal. sudo python xls2csv.py test.xls I want the csv delimited output to be redirected to a file. When I enter.... sudo python xls2csv.py test.xls... (5 Replies)
Discussion started by: jdilts
5 Replies

3. Red Hat

How to load a charset on RHEL 6.6 ?

Hi all, am running the following code on a RHEL 6.6 box to list which charsets are loaded and which are available: #!/usr/bin/perl -w use strict; use Encode; my @list = Encode->encodings(); my @all_encodings = Encode->encodings(":all"); print "@list\n\n"; print "@all_encodings\n"; ... (3 Replies)
Discussion started by: Fundix
3 Replies