gear360pano
gear360pano copied to clipboard
Windows: Not processing multiple file parameters
When I give multiple file parameters to the CMD script on Windows, it only looks at the first one.
Example:
gear360pano.cmd 360_1*.JPG 360_3*.JPG
Currently this is by design, the second argument is the Hugin template that should be used. But it kind of make sens to move the template parameter away from positional arguments.
maybe using a @list_of_files as parameter?
I have find a solution :
For %%X in (*.JPG) do (gear360pano.cmd %%X)
I think it must be added to the readme file