Is there a way to replace a sequence of Magick commands like:
magick folder1/1.jpg[80x100] folder2/1.jpg
magick folder3/2.jpg[80x100] folder4/2.jpg
...
magick folder9/xyz.jpg[80x100] folder10/xyz.jpg
into a single invocation of magick with all the commands in a single file, as in:
magick @command.lst
where "command.lst" is a text file that contains:
folder1/1.jpg[80x100] folder2/1.jpg
folder3/2.jpg[80x100] folder4/2.jpg
...
folder9/xyz.jpg[80x100] folder10/xyz.jpg
Thanks! Dan