From: cazamias Date: Wed, 3 Oct 2012 21:57:45 +0000 (+0000) Subject: Edited plot.sh to use test parameter X-Git-Tag: v8.0.0~1982 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71c9d7cbb4e4bcbbb55a3dc8779fb0e303436bb5;p=dealii.git Edited plot.sh to use test parameter git-svn-id: https://svn.dealii.org/trunk@26938 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/benchmarks/plot.sh b/tests/benchmarks/plot.sh index f66ec8ce89..47149d5080 100644 --- a/tests/benchmarks/plot.sh +++ b/tests/benchmarks/plot.sh @@ -5,10 +5,10 @@ echo "set terminal x11 persist" echo "set log y" echo "plot \\" n=1 -for i in `cat names.step-22` +for i in `cat names.$1` do n=`expr $n "+" 1` - echo "'datatable.step-22' using 1:$n title '$i' w lp,\\"; + echo "'datatable.$1' using 1:$n title '$i' w lp,\\"; done echo "0"