https://github.com/saulshanabrook/gotill
https://github.com/saulshanabrook/gotill
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/saulshanabrook/gotill
- Owner: saulshanabrook
- Created: 2017-11-25T16:15:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-25T18:12:21.000Z (almost 8 years ago)
- Last Synced: 2025-07-06T21:58:23.357Z (3 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `gotill`
Runs a command until some output is reached, then exit, keeping the command running in the background.
## Install
```
go get github.com/saulshanabrook/gotill
```TODO: Add binaries with [goreleaser](https://goreleaser.com/).
## Example
Run `jupyter lab --watch` in the foreground until the pattern `webpack --watch` is displayed, then send to background:
```bash
gotil 'webpack --watch' jupyter lab --watch
```