Choose a command and open its man page.

Section: History and navigation recipes

Browse man pages interactively

bash
bash
apropos . | fzf | awk '{print $1}' | xargs -r man
Explanation

Turns discoverability into an interactive workflow.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing History and navigation recipes
Jump to a recent directory
Use a list of tracked directories as an interactive jump menu.
OpenIn sheetbashsame section
Find project files with fd and fzf
Use fd as the file source for faster recursive listing.
Search with ripgrep then open in Vim
Use ripgrep for content search and fzf for interactive selection.
Preview ripgrep matches with context
Combine ANSI results with a syntax-highlighted preview.
Pick and switch branches
Use fzf to choose a Git branch interactively.
Browse recent commits
Preview commit details while selecting a hash.