From 03e1e3a24afab8f8ea94a5a686aa200d15cc484f Mon Sep 17 00:00:00 2001 From: Stephen Mardson McQuay Date: Mon, 30 May 2011 22:48:59 -0600 Subject: [PATCH] changed the genplots script because just passing gnuplot a glob uses persistant configuration options --- plots/gen_plots.zsh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plots/gen_plots.zsh b/plots/gen_plots.zsh index 6f1898f..115416c 100755 --- a/plots/gen_plots.zsh +++ b/plots/gen_plots.zsh @@ -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