mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 09:41:50 +00:00
22 lines
471 B
Plaintext
22 lines
471 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# goreload
|
|
|
|
> Live reload utility for Go programs.
|
|
> More information: <https://github.com/acoshift/goreload>.
|
|
|
|
- Watch a binary file (defaults to `.goreload`):
|
|
|
|
`goreload -b {{path/to/binary}} {{path/to/file.go}}`
|
|
|
|
- Set a custom log prefix (defaults to `goreload`):
|
|
|
|
`goreload --logPrefix {{prefix}} {{path/to/file.go}}`
|
|
|
|
- Reload whenever any file changes:
|
|
|
|
`goreload --all`
|