#!/bin/sh

if test $# -eq 0 
then echo "Usage: dot2anim dot_file"
     exit 
fi
ifile=$1

if test -s $ifile
then dot -Tplain $ifile -o /tmp/$0$$
fi

# cat /tmp/$0$$

$PVM_ROOT/pg/lib/$PVM_ARCH/c_pganim /tmp/$0$$

rm -f /tmp/$0$$
