mirror of
https://github.com/wader/fq.git
synced 2024-11-28 03:02:55 +03:00
13 lines
274 B
Plaintext
13 lines
274 B
Plaintext
/library/a.jq:
|
|
def a: "a";
|
|
$ fq -L /library -n 'include "a"; a'
|
|
"a"
|
|
$ fq --include-path /library -n 'include "a"; a'
|
|
"a"
|
|
$ fq -L /wrong -L /library -n 'include "a"; a'
|
|
"a"
|
|
$ fq -L /wrong -n 'include "a"; a'
|
|
exitcode: 3
|
|
stderr:
|
|
error: arg:1:0: open a.jq: file does not exist
|