1

I am learning to npm/node and i found the field man which says that:

Specify either a single file or an array of filenames to put in place for the man program to find.

Reference Link.

What is man program?

Can anyone explain in simple and easy words ?

2 Answers2

2

man is the standard UNIX command line tool for reading software manuals. man field is specific to *nix and remains unused on Windows, at least without additional measures.

It's expected that man field contains relative path to man formatted page.

Estus Flask
  • 206,104
  • 70
  • 425
  • 565
Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
0

man is a CLI (an interface on Linux terminal) to the on-line reference manuals, aka man-pages. The man-pages project is created for documenting user manual that is by default built into most Linux distributions, versions and most other Unix-like operating systems during installation.

codeaholicguy
  • 1,671
  • 1
  • 11
  • 18