#! /bin/csh -f
# simple Unix script to export all FIG files in the current directory
# to Postscript format at 90% magnification. To run, this file needs 
# execute permissions. Change the fig2dev paramters as needed.
# Start with:
# cd ~/where/your/figs/are
# ./run-fig2dev
#
foreach i (*.fig)
echo $i
fig2dev -L ps -P -m 0.90 $i `basename $i .fig`.ps
end
