I have a variable that points at a file called point.c
I would like to temporarily append "A" to "_SRCS" so I can rename the variable and use it in a function as "SRCS".
A_SRCS=point.c
pro="A B"
for x in $pro
do
SRCS=${${x}"_SRCS"}
echo $SRCS #(will point to a function later on..)
done