Home | History | Annotate | Download | only in sem_init

Lines Matching refs:count

40 count=1
41 while [ $count -le $columns ]
43 column[$count]=$(echo $cols | awk -vcount=$count '{print $(2 + count);}')
44 if [ -z "${column[$count]}" ]
46 column[$count]=$count;
48 count=$(($count + 1))
52 count=2
91 plot_cmd="plot '$FILE' using 1:2 title \"${column[$count]}\" $with"
92 count=3
93 while [ $count -le $columns ]
95 plot_cmd=$plot_cmd",'$FILE' using 1:$count title \"${column[$count]}\" $with"
96 count=$(($count + 1))