Posts

 Using the Man command For getting help on the use of Linux command line utils, use the man command. The sections of the manual are:            1.   General Commands Manual            2.   System Calls Manual            3.   Library Functions Manual            4.   Kernel Interfaces Manual            5.   File Formats Manual            6.   Games Manual            7.   Miscellaneous Information Manual            8.   System Manager's Manual            9.   Kernel Developer's Manual Example use: Show the manual page for stat(2):            $ man 2 stat  Show all manual pages for ‘stat’.            $ man -a sta...