mirror of
https://github.com/wader/fq.git
synced 2024-12-02 04:05:35 +03:00
a7a101ca67
Also add authors to avro and macho decoders Generated with: for i in $(go run . -r -n '_registry | [([([.files[][].name | split(".")[0]] | unique[]), (.formats[].name)] | count[] | select(.[1] == 2)[0]), (.formats[] | select(.decode_in_arg).name)] | unique[]'); do DIR=$(dirname $(find format -name $i.go)); echo "$ fq -h $i" > "$DIR/testdata/help_$i.fqtest" ; done
21 lines
380 B
Plaintext
21 lines
380 B
Plaintext
$ fq -h protobuf
|
|
protobuf: Protobuf decoder
|
|
|
|
Decode examples
|
|
===============
|
|
|
|
# Decode file as protobuf
|
|
$ fq -d protobuf . file
|
|
# Decode value as protobuf
|
|
... | protobuf
|
|
|
|
Can decode sub messages
|
|
=======================
|
|
|
|
$ fq -d protobuf '.fields[6].wire_value | protobuf | d' file
|
|
|
|
References
|
|
==========
|
|
- https://developers.google.com/protocol-buffers/docs/encoding
|
|
|