File: doc2text

package info (click to toggle)
emacspeak 40.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,208 kB
  • ctags: 5,818
  • sloc: xml: 55,354; lisp: 53,656; cpp: 1,893; tcl: 1,535; python: 1,370; makefile: 832; sh: 818; perl: 281; ansic: 241
file content (17 lines) | stat: -rwxr-xr-x 378 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#for use in vm
#Description: Install  package wv to obtain wvText
if which wvText > /dev/null
then
    cd /tmp
    wordfile=mswordviewfile$$.doc
    txtfile=mswordviewfile$$.txt
    cat > $wordfile
    wvText $wordfile $txtfile
    cat   $txtfile 
    /bin/rm $txtfile  *.wmf *.png *.doc
    exit 0
else
    echo "wvText not found --install package wv."
    exit 1
fi