rouse

Crates.iorouse
lib.rsrouse
version0.1.2
sourcesrc
created_at2022-10-06 18:46:07.777828
updated_at2022-10-06 23:30:33.397005
descriptionbarebones NPM concurrently clone
homepage
repositoryhttps://github.com/jakswa/rouse
max_upload_size
id681542
size8,756
Jake Swanson (jakswa)

documentation

README

Rouse

This is a barebones attempt at cloning NPM's concurrently package.

image

Examples

  1. With command line arguments
$ cargo install rouse
$ rouse "echo 'wow cool'" "sleep 2; echo 'also cool'"
[echo] wow cool
[sleep] also cool
  1. 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
Commit count: 7

cargo fmt