mirror of
https://github.com/wader/fq.git
synced 2024-11-28 11:42:50 +03:00
23 lines
428 B
Plaintext
23 lines
428 B
Plaintext
|
> fq -n '1+"a"'
|
||
|
exitcode: 5
|
||
|
stderr:
|
||
|
error: cannot add: number (1) and string ("a")
|
||
|
> fq -n '"abc" | halt_error(123)'
|
||
|
exitcode: 123
|
||
|
stderr:
|
||
|
error: abc
|
||
|
> fq -n 'null | halt_error(123)'
|
||
|
exitcode: 123
|
||
|
> fq -n invalid
|
||
|
exitcode: 3
|
||
|
stderr:
|
||
|
error: src:1:0: function not defined: invalid/0
|
||
|
> fq -n "("
|
||
|
exitcode: 3
|
||
|
stderr:
|
||
|
error: src:1:2: unexpected token <EOF>
|
||
|
> fq . non-existing
|
||
|
exitcode: 2
|
||
|
stderr:
|
||
|
error: non-existing: file not found
|