zi
zoxide + fzf: pick recent dir interactively
fd -e md | fzf
Find Markdown files, pick one with fzf
rg -l pat | fzf
Find files with match, pick one interactively
rgf pattern
rg results in fzf with bat preview pane
vim $(fd -e py | fzf)
Find Python file → pick → open in vim
eza -T | rg pattern
Search within tree output
fd -x rg pat {}
Find files then search within each
ll | rg pattern
Filter long listing by pattern
fd -e log -x bat
Find all .log files and view with bat