Closed FunctionalHacker closed 2 years ago
I want to use fzf to search for man pages. Is there a way I could get a list of all pages that I could then pipe into fzf?
For reference, this is how I do it with normal man:
man -k . | fzf | awk '{print $1}' | xargs -r man
I want to use fzf to search for man pages. Is there a way I could get a list of all pages that I could then pipe into fzf?