mirror of
https://github.com/wader/fq.git
synced 2024-12-28 16:13:11 +03:00
16 lines
189 B
Plaintext
16 lines
189 B
Plaintext
|
$ fq -i
|
||
|
null> {a: 123, b: []} | debug
|
||
|
{
|
||
|
"a": 123,
|
||
|
"b": []
|
||
|
}
|
||
|
null> {a: 123, b: []} | debug({a})
|
||
|
{
|
||
|
"a": 123,
|
||
|
"b": []
|
||
|
}
|
||
|
null> ^D
|
||
|
stderr:
|
||
|
["DEBUG",{"a":123,"b":[]}]
|
||
|
["DEBUG",{"a":123}]
|