Skip to content

janjelinek/parallelshell

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Parallel Shell

This is a super simple npm moudle to run shell commands in parallel. All processes will share the same stdout/stderr, and if any command exits with a non-zero exit status, the rest are stopped and the exit code carries through.

Install

Simply run the following to install this to your project:

npm i --save-dev parallelshell

Or, to install it globally, run:

npm i -g parallelshell

Usage

To use the command, simply call it with a set of strings - which correspond to shell arguments, for example:

parallelshell 'echo 1' 'echo 2' 'echo 3'

This will execute the commands echo 1 echo 2 and echo 3 simultaneously.

About

Run multiple shell commands in parallel

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%