diff --git a/Examples.md b/Examples.md index f728903..55efcbf 100644 --- a/Examples.md +++ b/Examples.md @@ -1421,7 +1421,7 @@ mkfifo $output chmod 600 $input $output # it's better to use st here (starts a lot faster than pretty much everything else) -st -c fzfmenu -n fzfmenu -e sh -c "cat $input | fzf | tee $output" & disown +st -c fzfmenu -n fzfmenu -e sh -c "cat $input | fzf --print-query | tail -1 | tee $output" & disown # handle ctrl+c outside child terminal window trap "kill $! 2>/dev/null; rm -f $input $output" EXIT