Example with Find: find, piped to rg, piped to fzf

Command to reproduce:

gt.sandbox.checkout.commit e631ea5 \
&& cd "${GT_SANDBOX_REPO}/dir-with-files" \
&& cmd.run.announce "touch first_file && find . -mmin -10 -type f -print0 | xargs -0 rg . | fzf"
find . -mmin -10 -type f -print0 | xargs -0 rg . --hidden --with-filename --line-number --follow | fzf

Backlinks