1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-07-23 09:59:03 +00:00
dotfiles/bin/jqf

6 lines
132 B
Plaintext
Raw Normal View History

2022-10-03 03:02:15 +00:00
#!/bin/sh
in=$(mktemp)
cat /dev/stdin > "$in"
fzf --preview-window='up:99%' --preview "jq --color-output -r {q} $in $1"
rm -f "$in"