File: ppt2html

package info (click to toggle)
emacspeak 29.0-9
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 12,904 kB
  • sloc: xml: 55,354; lisp: 48,335; cpp: 2,321; tcl: 1,500; makefile: 936; python: 836; sh: 785; perl: 459; ansic: 241
file content (16 lines) | stat: -rwxr-xr-x 348 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#for use in vm
#Description: Install  package xlhtml to obtain ppthtml
#http://www.xlhtml.org
if which ppthtml > /dev/null
then
    tempfile=/tmp/ppthtml-$$.ppt
    cat > $tempfile
    ppthtml   $tempfile
    rm -f $tempfile
    exit 0
else
    echo "ppthtml not found --install package xlhtml from
#http://www.xlhtml.org."
    exit 1
fi