Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sentriz/sync-procs

synchronise processes in different shells so that they start at the same time
https://github.com/sentriz/sync-procs

Last synced: 3 days ago
JSON representation

synchronise processes in different shells so that they start at the same time

Awesome Lists containing this project

README

        

sync-procs


synchronise processes in different shells so that they start at the same time

---

### installation

```shell
go install go.senan.xyz/sync-procs@latest
```

### usage

```shell
sync-procs # server
sync-procs # client
```

### example

_session A_

```shell
$ sync-procs 3 && date # server
# hanging until we have all 3
Sat 11 Jun 2022 16:28:04 IST
```

_session B_

```shell
$ sync-procs && date
# hanging until we have all 3
Sat 11 Jun 2022 16:28:04 IST
```

_session C_

```shell
$ sync-procs && date
# hanging until we have all 3
Sat 11 Jun 2022 16:28:04 IST
```

---