machma icon indicating copy to clipboard operation
machma copied to clipboard

Easy parallel execution of commands with live feedback

Results 2 machma issues
Sort by recently updated
recently updated
newest added

``` $ cat foo.sh #!/bin/sh echo $1 ``` ``` $ for a in {1..10}; do for b in {1..100}; do echo $b; done | go run github.com/fd0/machma@latest -- ./foo.sh "{}"...

It would be nice if the output could be controlled by using options. The worker number and timestamp either contain data I don't need or are already provided by the...

enhancement