https://github.com/neuodev/concurrently
Run multiple commands concurrently
https://github.com/neuodev/concurrently
Last synced: 3 months ago
JSON representation
Run multiple commands concurrently
- Host: GitHub
- URL: https://github.com/neuodev/concurrently
- Owner: neuodev
- Created: 2022-09-08T06:05:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-08T06:33:02.000Z (almost 4 years ago)
- Last Synced: 2026-03-31T05:39:15.392Z (4 months ago)
- Language: Rust
- Size: 15.3 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Concurrently
Run multiple commands concurrently
# Preview
# Usage
## Basic usage
`concurrently "command1" "command2"`
```bash
concurrently "ping -c 100 google.com" "ping -c 100 example.com"
```
Output
```bash
ping: 64 bytes from 93.184.216.34: icmp_seq=0 ttl=45 time=214.182 ms
ping: PING google.com (172.217.171.238): 56 data bytes
```
## With names
```bash
concurrently -n Google,Example "ping -c 100 google.com" "ping -c 100 example.com"
```
Output
```bash
Google: PING google.com (172.217.171.238): 56 data bytes
Google: 64 bytes from 172.217.171.238: icmp_seq=0 ttl=109 time=87.086 ms
Example: PING example.com (93.184.216.34): 56 data bytes
Example: 64 bytes from 93.184.216.34: icmp_seq=0 ttl=45 time=229.462 ms
```
```bash
concurrently 1.0.0
Ahmed Ibrahim
Run multiple commands concurrently
USAGE:
concurrently.exe [OPTIONS] ...
ARGS:
... Set multiple commands to concurrently
OPTIONS:
-h, --help Print help information
-n A comma separated values represent a name fore each running process
-s Separator of the processe names [default: ,]
-V, --version Print version information
```