parallelshell icon indicating copy to clipboard operation
parallelshell copied to clipboard

Run multiple shell commands in parallel

Results 20 parallelshell issues
Sort by recently updated
recently updated
newest added

After having used docker-compose in the past, I really liked the way it showed output from all of the processes it runs. Here's a screenshot: ![Docker-compose screenshot](https://calazanblog-assets.s3.amazonaws.com/media/editor-uploads/docker_compose_logs.png) It would be...

enhancement
pr wanted
needs research

The docs make a comparison with: ``` cmd1 & cmd2 & cmd3 ``` But really you should compare it with: ``` cmd1 & cmd2 & cmd3 & wait ``` This...

pr wanted
needs research

I am using parallelshell to perform end 2 end testing, like starting a server and then making a request from another script. Most of the time, there is no error,...

enhancement
pr wanted
invalid
question

I see it pretty awkward. Same issue for `concurrently` ``` 21:03 $ `npm bin`/parallelshell '`npm bin`/eslint .' '`npm bin`/karma start ./karma.conf.js --single-run --reporters coverage' -w fs.js:691 return binding.lstat(pathModule._makeLong(path)); ^ Error:...

bug
needs research

It'd be nice if parallelshell has a shortcut for running npm scripts, something like: ``` bash parallelshell 'npm run build' # old style parallelshell -n 'build' # shorthand style ```...

enhancement
pr wanted
needs research

I made a repo to demonstrate the issue: https://github.com/nichoth/para-test This is a common scenario for me—working on multiple modules that use the same port. In one terminal, run `parallelshell "node...

pr wanted
needs research

I see that parallelshell responds to the SIGINT signal by cleanly shutting down all it's children. However, when stopped with the SIGTERM signal it simply exits, leaving all it's spawned...

enhancement
pr wanted
needs research

Hi Keith Inspired by your blog post about scrapping grunt etc, and just using NPM, I happily using parallelshell. Unfortunately, there are many cases where I need to set the...

New version with all problems resolved :smile: