bash variable name in another variable code example
Example 1: bash dynamic variable name
${!var} #Just use to use reference value inside another variable ;)
Example 2: bash dynamic varibale
#!/bin/bash
for (( i=1; i<=5; i++ ))
do
echo yourfile.$((i+70))\.txt file_$i
done