I want to make some montage in ImageMagick which is called by Python via os.system() with 100 jpegs files.
Here's the command:
cmd='montage '+file[i]+' '+file[i+1]+' '+file[i+2]+' '+file[u+3]+' +file[i+4]+'...+file[i+99]
I would like to know how could I avoid to write all file[i+x] entries.
Is this possible?