
Re: DOS equivalent of ${variable}
Expanding of variables are done with percents.
Code:
inname=`convert image -format "%%t" info:`
convert image.jpg ..... %inname%_%%d.png
You could also use exclamation marks if you use setlocal EnableDelayedExpansion before.
To escape a single percent you have to double it.
jeb