I am new at this and I'll simplify my problem. I doing the following script:
echo "Insert number of elements:" 
read elements
echo "Insert md number:" 
read sim
echo "uni_$elements_md$sim.tpr" >> doc.bash
But when I run the doc.bash file it only shows inside:
uni_4.tpr
Please help me, how must I do my echo so that if I put elements as 14 and sim as 4 (just to put an example), it displays:
uni_14_md4.tpr
Thanks.
 
    