changed the genplots script because just passing gnuplot a glob uses persistant configuration options

This commit is contained in:
Stephen McQuay 2011-05-30 22:48:59 -06:00
parent 4d043062b7
commit 03e1e3a24a
1 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,11 @@ truthiness/3D \
for dir in $DIRS
do
cd $dir && gnuplot *.plt
cd $dir
for pltfile in *.plt
do
gnuplot $pltfile
done
cd $ROOTDIR
done