faq
faq copied to clipboard
Format Agnostic jQ -- process various formats with libjq
Because I hacked this together, I didn't really structure it with unit tests yet.
`faq` fails with this error: ``` Error: failed to encode as pretty: xml.Decoder.Token() - XML syntax error on line 1: expected attribute name in element ``` when fed this valid...
Any consderation of support for .ini files, the somewhat standardized format often used for config files? I see a Go library https://github.com/go-ini/ini that could be useful, and there's a proof...
[gojq](https://github.com/itchyny/gojq) is a pure Go libjq implementation. It does have documented incompatibilities, but it's worth leaving an issue open to see if the community is more interested in 100% compatibility...
This would allow people to debug/convert files like x.509 certificates. Here's a potentially useful library: https://godoc.org/golang.org/x/crypto/cryptobyte
CSV
With separators auto-guessing and optional overrides: https://en.wikipedia.org/wiki/Comma-separated_values `faq -f json -o csv < file.json`
Hi! Great work! Learn a lot about cgo and jq internals from this project. I start my own project to use jq programs in Go projects with ability to cache...
I spent a little time trying to see if I could generically support asn.1. I found that supporting it would probably mean actually having schemas for various things that are...
When I send an integer value, it seems to be decoded correctly as it shows as a json number : ``` $ echo i12e | faq -f bencode -o json...
Hi! I would love to try out this project, it looks amazing!! Unfortunately, in the builds/release section, I can only find Linux and Mac builds (and I don't know how...