Crates.io | bobr |
lib.rs | bobr |
version | 0.1.2 |
source | src |
created_at | 2024-11-15 10:10:36.233123 |
updated_at | 2024-11-26 22:55:35.649935 |
description | A simple command multiplexer. |
homepage | https://github.com/cchexcode/bobr |
repository | https://github.com/cchexcode/bobr |
max_upload_size | |
id | 1448961 |
size | 499,575 |
bobr
is a simple command multiplexer.
bobr
will execute all given commands in parallel and give an overview of the status these are in. It is useful for executing multiple commands in parallel, whether it is to speed things up or to run multiple long running commands in parallel (like starting backend HTTP server and frontend).
bobr -c "sleep 5" -c "sleep 10" -c "sleep 2 && exit 1"
bobr -c "sleep 5" -f ./tasks.sh
Note: Duplicate commands will automatically be deduplicated (for now).