For instance, if I type:
man ps
…and then scroll to the very end I see something like this:
SEE ALSO kill(1), w(1), kvm(3), strftime(3), sysctl(8)
How am I supposed to interpret this? I know that kill is another command but what’s the meaning of (1)? Is there anything to this?
The git man page is riddle with these:
git-add(1), git-am(1), git-archive(1)
What is someone trying to tell me?
To access the man page for a given numbered section, type
man number commandFrom
man manSo for example,
Will give you the page for the shell printf command, whereas
Will give you the page for the C library call.