Home | History | Annotate | Download | only in pi_test

Lines Matching refs:count

20 count=1
21 while [ $count -le $columns ]
23 column[$count]=$(echo $cols | awk -vcount=$count '{print $(2 + count);}')
24 if [ -z "${column[$count]}" ]
26 column[$count]=$count;
28 count=$(($count + 1))
32 count=2
60 echo "plot '$FILE' using 1:2 title \"${column[$count]}\" $with" >> $TMP/gnuplot.script
61 count=3
62 while [ $count -le $columns ]
64 echo "replot '$FILE' using 1:$count title \"${column[$count]}\" $with" \
66 count=$(($count + 1))