#! /bin/csh -f
set echo

set ntd_path = "/cs/pmai2/www/Repository/Utils"
set dot_path = "/cs/pmai2/www/Repository/Utils"

perl $ntd_path/net-to-dot.perl $1 > /tmp/$$
$dot_path/dot -Tps /tmp/$$ > /tmp/$$.ps
gv /tmp/$$.ps
rm -rf /tmp/$$  /tmp/$$.ps

