I see in ImageMagick's documentation that I can use something like magick @myfiles.txt to send multiple filenames (in my case I can't use globbing since they're random) to input, but the only example available combines them into a single output.
Is there a way to output separate files for each input using this functionality? If not, how would one achieve this in Powershell? Something like Get-content filenames.txt | ForEach-Object {magick}?