#! /bin/sh
# GENERATES eps from jgraph files ALL AT ONCE
#for all files in a directory

#USE AS: jALL, you'll have all the corresponding eps files

for i in *.jgr
do
    jgraph  $i > "`basename $i .jgr`.eps"
done 

