File: xls2html

package info (click to toggle)
emacspeak 24-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 9,092 kB
  • ctags: 4,597
  • sloc: xml: 54,699; lisp: 42,103; tcl: 1,799; makefile: 810; cpp: 603; sh: 566; ansic: 153; perl: 124
file content (16 lines) | stat: -rwxr-xr-x 349 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 xlhtml
#http://www.xlhtml.org
if which xlhtml > /dev/null
then
    tempfile=/tmp/xlhtml-$$.xls
    cat > $tempfile
    xlhtml -a -te  $tempfile
    rm -f $tempfile
    exit 0
else
    echo "xlhtml not found --install package xlhtml from
#http://www.xlhtml.org."
    exit 1
fi