Hi,
I am writing a shell script, and need help with a small piece of code.
It is as below:
CUST_1=filename
b=1
c=$CUST_$b
echo $c
I want the output from this as filename, whereas I get it as 1.
Please guide as if where am I going wrong in here.