smbinterp/plots/gen_plots.zsh

29 lines
345 B
Bash
Raw Normal View History

2011-05-29 16:19:52 -07:00
#!/bin/zsh
ROOTDIR=$HOME/src/research/plots
FIGDIR=$HOME/src/thesis/figures/results/
DIRS=(\
resolution \
scalability \
timing \
timing/2D \
timing/3D \
rms/2D \
rms/3D \
truthiness/2D \
truthiness/3D \
)
for dir in $DIRS
do
cd $dir
for pltfile in *.plt
do
gnuplot $pltfile
done
2011-05-29 16:19:52 -07:00
cd $ROOTDIR
done
2011-05-30 21:58:33 -07:00
mv $(find | grep eps$) $FIGDIR