I was using the following in my current script
for x in {07..10}
Trying to pass the start,end variables to the script using
for x in $(seq $1 $2)
Since the sequence starts from 07, and 07 is a file name that I want to read, I cant change the variable to 7, as it happens when using the sequence. Can you please point me in the right direction as I don't have much experience with bash.