I have a bash script that I use to call a c++ program, each time indicating a different file name (see below). At present the file number is not increasing; do you have any suggestion on how to change that? Thanks!
for i in {0..48}; do
    ./program file$05i.jpeg
done
 
     
    