Adds an interactive jq experement
This commit is contained in:
parent
c02e14dcfc
commit
28386e90fb
1 changed files with 9 additions and 0 deletions
9
bin/.bin/jqi
Executable file
9
bin/.bin/jqi
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
stdin="$(cat -)"
|
||||||
|
escaped="$(echo "$stdin" | sed 's/"/\\"/g')"
|
||||||
|
query="$(echo "" | fzf --preview-window=up:99% --print-query \
|
||||||
|
--preview "echo \"$escaped\" | jq -C {q}" | head -n 1)"
|
||||||
|
|
||||||
|
echo "$stdin" | jq "$query"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue