This is a quick note and I will write about this subject later in another post.
The first thing you want to do is, check and see what are the manual pages available for your command:
$ man -f command
then call the page number after man command and before your command. Take a look at the example:
$ man -f mkdir
mkdir (1) – make directories
mkdir (1p) – make directories
mkdir (2) – create a directory
mkdir (3p) – make a directory
$ man 1p mkdir
The last command will open “POSIX Programmer’s Manual” for the mkdir command.
Cheers!

