You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-13
Original file line number
Diff line number
Diff line change
@@ -2,25 +2,23 @@
2
2
3
3
Tool, language and decoders for working with binary data.
4
4
5
+
TLDR: it aims to be jq, hexdump, dd and gdb for files combined into one.
6
+
5
7

6
8
7
-
Basic usage is `fq . file`or `fq d file`.
9
+
Basic usage is `fq . file`, `fq d file`or `fq 'some query' file ...`.
8
10
9
11
For details see [usage.md](doc/usage.md).
10
12
11
13
### Background
12
14
13
-
fq is inspired by the well known jq tool and language that allows you to work with binary formats the same way you would using jq. In addition it can present data like a hex viewer, transform, slice and concatenate binary data. It also supports nested formats and has an interactive REPL with auto-completion.
14
-
15
-
It was originally designed to query, inspect and debug media codecs and containers like mp4, flac, mp3, jpeg. But since then it has been extended to support a variety of formats like executables, packet captures (with TCP reassembly) and serialization formats like JSON, YAML, XML, ASN1 BER, Avro, CBOR, protobuf. In addition it also has functions to work with URLs, convert to/from hex, number bases, search for things etc.
16
-
17
-
In summary it aims to be jq, hexdump, dd and gdb for files combined into one.
15
+
fq is inspired by the [jq](https://jqlang.github.io/jq/) tool and language and allows you to work with binary formats in the same way. In addition to using jq expressions it can also present decoded tree structures, transform, slice and concatenate binary data. It also supports nested formats and features an interactive REPL with auto-completion of functions and names.
18
16
19
-
**NOTE:** fq is still early in development so things might change, be broken or do not make sense. That also means that there is a great opportunity to help out!
17
+
It was originally designed to query, inspect and debug media codecs and containers like MP4, FLAC and JPEG but has since been extended to support a variety of formats like executables, packet captures (with TCP reassembly) and serialization formats like JSON, YAML, XML, CBOR, protobuf. In addition it also has functions to work with URLs, convert to/from hex, number bases, search for patterns etc.
20
18
21
19
### Goals
22
20
23
-
- Make binaries accessible, queryable and sliceable.
21
+
- Make binaries more accessible, queryable and sliceable.
0 commit comments