I have a loop that cycles through a bunch of images that I need to edit with Imagemagick. Trouble is, it's slow to have to wait for each image to be edited before editing the next one. I want to execute each of the convert commands asynchronously not waiting for the last one to finish.Is this possible with bash? Here's a basic overview of what I have:
for img in *
do
convert $img **more params here**
done
I want to execute that convert command asynchronously. So I can convert all the images at once. Is this possible with bash?