Articles


5 Tiny CLI Tricks You (Probably) Didn't Know

A lightning round of tiny command-line habits that make your workflow feel faster and more reliable.

history | grep + fzf = instant recall

Fish out that elusive command you ran last Tuesday and paste it right back to your prompt with a single tap.

history | grep docker | fzf

Reverse-search git logs by file content

Combine `git log` with `-S` (search diff) to find the commit where a string first appeared without guessing the SHA.

git log -S"resizeObserver" --oneline -- src/components/Layout.tsx