Lines 31-37
Link Here
|
31 |
debug-print function $FUNCNAME $* |
31 |
debug-print function $FUNCNAME $* |
32 |
declare -i topindex |
32 |
declare -i topindex |
33 |
topindex="catcounter-1" |
33 |
topindex="catcounter-1" |
34 |
for i in `seq 0 ${topindex}` |
34 |
for i in $(eval echo {0..${topindex}}) |
35 |
do |
35 |
do |
36 |
arg1=`echo ${toinstall[$i]} | cut -f1 -d\:` |
36 |
arg1=`echo ${toinstall[$i]} | cut -f1 -d\:` |
37 |
arg2=`echo ${toinstall[$i]} | cut -f2 -d\:` |
37 |
arg2=`echo ${toinstall[$i]} | cut -f2 -d\:` |
Lines 54-60
Link Here
|
54 |
debug-print function $FUNCNAME $* |
54 |
debug-print function $FUNCNAME $* |
55 |
declare -i topindex |
55 |
declare -i topindex |
56 |
topindex="catcounter-1" |
56 |
topindex="catcounter-1" |
57 |
for i in `seq 0 ${topindex}` |
57 |
for i in $(eval echo {0..${topindex}}) |
58 |
do |
58 |
do |
59 |
arg1=`echo ${toinstall[$i]} | cut -f1 -d\:` |
59 |
arg1=`echo ${toinstall[$i]} | cut -f1 -d\:` |
60 |
arg2=`echo ${toinstall[$i]} | cut -f2 -d\:` |
60 |
arg2=`echo ${toinstall[$i]} | cut -f2 -d\:` |