Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mysticatea/run-all
CLI tool to execute multiple commands parallelly.
https://github.com/mysticatea/run-all
Last synced: about 2 months ago
JSON representation
CLI tool to execute multiple commands parallelly.
- Host: GitHub
- URL: https://github.com/mysticatea/run-all
- Owner: mysticatea
- License: mit
- Created: 2015-03-14T12:54:34.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-14T17:26:51.000Z (almost 10 years ago)
- Last Synced: 2024-09-17T02:45:24.646Z (4 months ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# run-all
CLI tool to execute multiple commands parallelly.
## Installation
```
npm install run-all
```## Usage
```
Usage: run-all [OPTIONS] [COMMANDS...]If there are spaces in command text, enclose the command by double quotes.
Options:
-h, --help Print this help text.
-v, --version Print the version number.
```## Examples
```
run-all "babel src --out-dir lib --watch" "mocha test/*.js --watch --colors"
```