1
1
mirror of https://github.com/wader/fq.git synced 2024-11-23 09:56:07 +03:00

fq: Rename main.go to fq.go

This commit is contained in:
Mattias Wadman 2021-12-03 10:35:52 +01:00
parent d48ebc12ee
commit a7a58c8fb2
2 changed files with 2 additions and 2 deletions

View File

@ -25,12 +25,12 @@ decoder code be a bit ugly over producing a tree that is hard to understand.
Send `log` package output and stderr to a file that can be `tail -f`:ed:
```sh
LOGFILE=/tmp/log go run main.go ... 2>>/tmp/log
LOGFILE=/tmp/log go run fq.go ... 2>>/tmp/log
```
gojq execution debug:
```sh
GOJQ_DEBUG=1 go run -tags debug main.go ...
GOJQ_DEBUG=1 go run -tags debug fq.go ...
```
## From start to decoded value

View File