-
-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: is there a simple way to run a single command with n concurrency? #426
Comments
Like |
But does that allow you to run one single command concurrently? |
No, I misunderstood your initial request. So you're looking at a way to e.g. run |
@gustavohenke, yes, exactly |
There's nothing like that in the CLI currently, though there's some special syntax that could be built on, e.g. Another option would be through the addition of a new flag, but I'm not sure how to make it ergonomic. Finally, you can always do whatever you want programmatically: import concurrently from 'concurrently';
concurrently(Array({ length: 5 }, (_, i) => `echo "Hello world${i}"`)) thoughts, @paescuj? |
I'm looking for a way to easily run the same command in parallel, specifying the number of concurrent executions. Does concurrently support that?
The text was updated successfully, but these errors were encountered: