# ppt2html - convert MS PowerPoint files to html 
#
#

prog=${0##*/}

if [ $# -ne 2 ]
then
    echo "Usage: $prog file outputfile" >&2
    exit 2
fi

ppthtml $1  > $2
