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
{{ message }}
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.
Install with go get github.com/fiatjaf/jiq/cmd/jiq
Run echo '{"field": 1}' | jiq -q '.field'
Expected
[jq]> .field
1
Actual
[jq]> .field
and after typing:
[jq]> .field
jq: error: Could not open file .field: No such file or directory
I was writing a small bash script wrapper which would keep a history of expressions for a given input file, so I need -q for saving it and the initial expression argument for restoring the most recent expression.
The text was updated successfully, but these errors were encountered:
How to reproduce:
Install with
go get github.com/fiatjaf/jiq/cmd/jiq
Run
echo '{"field": 1}' | jiq -q '.field'
Expected
Actual
and after typing:
I was writing a small bash script wrapper which would keep a history of expressions for a given input file, so I need
-q
for saving it and the initial expression argument for restoring the most recent expression.The text was updated successfully, but these errors were encountered: