mirror of
https://github.com/wader/fq.git
synced 2024-11-23 18:56:52 +03:00
20 lines
273 B
Plaintext
20 lines
273 B
Plaintext
/test.jq:
|
|
123
|
|
/test2.jq:
|
|
.headers[0].magic | tovalue
|
|
/err.jq:
|
|
asdad)
|
|
/test.mp3:
|
|
$ fq -n -f /test.jq
|
|
123
|
|
/test.jq:
|
|
123
|
|
$ fq -f /test2.jq /test.mp3
|
|
"ID3"
|
|
$ fq --from-file /test2.jq /test.mp3
|
|
"ID3"
|
|
$ fq -nf /err.jq
|
|
exitcode: 3
|
|
stderr:
|
|
error: /err.jq:1:6: unexpected token ")"
|