Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ tired of opening terminals and made **concurrently**.

The tool is written in Node.js, but you can use it to run **any** commands.

Remember to surround separate commands with quotes:
Remember to surround separate commands with the appropriate quotes:

> **Note**
> Depending on the OS, shell and command in question, you might have to use different quotes.
> For example, double quotes are typically used for Windows CMD, whereas in POSIX environments as well as PowerShell, single quotes can be used if the interpretation of variables and special characters is to be prevented.

```bash
concurrently "command1 arg" "command2 arg"
Expand Down Expand Up @@ -173,7 +177,6 @@ It has the following properties:
- `error`: an RxJS observable to the command's error events (e.g. when it fails to spawn).
- `timer`: an RxJS observable to the command's timing events (e.g. starting, stopping).
- `messages`: an object with the following properties:

- `incoming`: an RxJS observable for the IPC messages received from the underlying process.
- `outgoing`: an RxJS observable for the IPC messages sent to the underlying process.

Expand Down