parent
c3f16db486
commit
bc0474186f
1 changed files with 9 additions and 0 deletions
@ -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…
Reference in new issue