linode creation based on image bash parallel script loop?
Hello, I am a Linux newb looking to run the command below, but I want it to execute them all in parallel rather than in series, one by one. Any help would be appreciated.
!/bin/bash
for label in ubnt{1..200}; do linode create --location Newark --imageid 2791715 --plan linode1024 --label ${label}; done
Thanks!