#!/bin/bash
#
#  wordview   Rev0 2/5/05
#  originally submitted by cbagger01 from the DSL forum
#
antiword -i2 -p a4 "$*" > /tmp/"$*".ps
ps2pdf /tmp/"$*".ps /tmp/"$*".pdf
xpdf /tmp/"$*".pdf
rm /tmp/"$*".pdf
exit
