What is the use of man command?

Questions by janelyn   answers by janelyn

Showing Answers 1 - 12 of 12 Answers

MS

  • May 6th, 2007
 

To display help text for a Unix command from the Unix system manual.

  Was this answer useful?  Yes

Sonali Sehgal

  • Jan 15th, 2013
 

Man is also a UNIX command like ls or cat.I am also updating the UNIX a few examples for the man command.
The POSIX specification requires man to support only one option (-k) and most of the UNIX systems also offers the apropos command that emulates man -k.When used with this option it prints the one line description of the command that emulates man-k.When used with this option,man searches summary database and prints a one liner description of the command.


Code
  1. man-k awk

  2. --it prints

  3. awk awk(1)  - pattern scanning and processing language

  4. nawk nawk(1) - pattern scanning and processing language

  5. man man  //Viewing the pages with man

  6. man wc    //Help on wc command

  7.  

  Was this answer useful?  Yes

  • Apr 19th, 2015
 

Its like a manual which informs how to use various commands available in *nix systems.
Extra information

You can create a man command for your own scripts also. It requires a particular format for inside the file. It needs to be placed in particular directory to be readable by man command

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions