Is it possible to define n assign a value to multiple variables using a loop??
I was trying to achieve something like the following.
for (( i=0, i<=10, i++ ))
do
var_$i="value"
done
upon execution, it throws something like command not found...
thanks.