I am trying to append values of different variable
Eg:
p1=100
j=1
and
echo $p1
100
echo $j
1
but I append both the value I need out put as
echo $p$j
100
that means instead of 1, I will give $j
which has the same value, is there any other option?
Thanks