3 releases
0.1.2 | Oct 6, 2022 |
---|---|
0.1.1 | Oct 6, 2022 |
0.1.0 | Oct 6, 2022 |
#9 in #concurrently
5KB
84 lines
Rouse
This is a barebones attempt at cloning NPM's concurrently package.
Examples
- With command line arguments
$ cargo install rouse
$ rouse "echo 'wow cool'" "sleep 2; echo 'also cool'"
[echo] wow cool
[sleep] also cool
- With
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
Dependencies
~0.6–1.2MB
~27K SLoC