Skip to content
/ rouse Public

built this before I knew the `concurrently` crate existed

License

Notifications You must be signed in to change notification settings

jakswa/rouse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

built this before I knew the `concurrently` crate existed

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages