arch-wiki-man icon indicating copy to clipboard operation
arch-wiki-man copied to clipboard

How to get names of all man pages?

Open FunctionalHacker opened this issue 5 years ago • 1 comments

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?

FunctionalHacker avatar Sep 01 '19 09:09 FunctionalHacker

For reference, this is how I do it with normal man:

man -k . | fzf | awk '{print $1}' | xargs -r man

FunctionalHacker avatar Sep 01 '19 09:09 FunctionalHacker