this post was submitted on 03 Oct 2023
8 points (100.0% liked)

Linux

4968 readers
56 users here now

A community for everything relating to the linux operating system

Also check out !linux_memes@programming.dev

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 1 year ago
MODERATORS
 

How do you discover system builtins for C functions? The man pages for the C functions on Linux are great, but only if you know the name of the function. Is there a way to see a detailed table of contents, or to browse Manpages on a Linux distro?

you are viewing a single comment's thread
view the rest of the comments
[–] thingsiplay@kbin.social 3 points 11 months ago

I wrote a little script to browse Manpages: woman using fzf to create such a browser. Just run woman without arguments to see the full list.

I think you would need to change the variable sections='1,8,6,5,7' , so it access only specific Manpages. In example 1 stands for executable programs or shell commands. More about the sections in the DESCRIPTION of the man command itself: man man