mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-20 05:43:18 +00:00
6 lines
121 B
Bash
Executable file
6 lines
121 B
Bash
Executable file
#!/bin/sh
|
|
in=$(mktemp)
|
|
cat > "$in"
|
|
fzf --preview-window='up:99%' --preview "jq --color-output -r {q} $in $1"
|
|
rm -f "$in"
|