Crates.io | rouse |
lib.rs | rouse |
version | 0.1.2 |
source | src |
created_at | 2022-10-06 18:46:07.777828 |
updated_at | 2022-10-06 23:30:33.397005 |
description | barebones NPM concurrently clone |
homepage | |
repository | https://github.com/jakswa/rouse |
max_upload_size | |
id | 681542 |
size | 8,756 |
This is a barebones attempt at cloning NPM's concurrently package.
$ cargo install rouse
$ rouse "echo 'wow cool'" "sleep 2; echo 'also cool'"
[echo] wow cool
[sleep] also cool
cmds.toml
TOML file in your directory.[[cmds]]
label = "wtf"
cmd = "sleep 4; echo 'fuck yeah'"
[[cmds]]
label = "wtf2"
cmd = "sleep 2; echo 'fuck yeah'"
$ rouse
[wtf2] fuck yeah
[wtf] fuck yeah