If I have 2 variables with values assigned as below -
a=1; s1=555
Can we print 555 using:
$ echo $s`echo $a`
...? My requirement is use variable 'a' in second variable to print final value of s1.
I have tried it already and failed. Is there any way?
Thanks.