Plurrrr

Sun 07 Aug 2022

CLI Workflow with Grep, Fzf, and Clp

grep, ag, and ripgrep search file contents for text that matches regular expressions. The previous links show some of their more advanced options.

fzf is an interactive Unix filter. You can feed it anything from stdin (files, previously entered commands, etc) and it displays the results on the screen along with a prompt. When you type into the prompt, fzf filters the list.

When combined, they can substantially speed up a CLI workflow.

Source: CLI Workflow with Grep, Fzf, and Clp, an article by Jon Eskin.