MAN.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:5k
源码类别:

操作系统开发

开发平台:

C/C++

  1. MAN(1)                    Minix Programmer's Manual                     MAN(1)
  2. NAME
  3.      man - display online manual pages
  4. SYNOPSIS
  5.      man [-antkf] [-M path] [-s section] title ...
  6. DESCRIPTION
  7.      Man displays the online manual pages for  the  specified  titles  in  the
  8.      specified sections.  The sections are as follows:
  9.      1    User Commands
  10.           Generic commands such as ls, cp, grep.
  11.      2    System Calls
  12.           Low level routines that directly interface with the kernel.
  13.      3    Library Routines
  14.           Higher level C language subroutines.
  15.      4    Device Files
  16.           Describes devices in /dev.
  17.      5    File Formats
  18.           Formats of files handled by various utilities and subroutines.
  19.      6    Games
  20.           It's not UNIX without an adventure game.
  21.      7    Miscellaneous
  22.           Macro packages, miscellaneous tidbits.
  23.      8    System Utilities
  24.           Commands for the System Administrator.
  25.      9    Documents
  26.           Larger manuals explaining some commands in more detail.
  27.      (If you are new to Minix then try man hier, it will show you  around  the
  28.      file system and give you many pointers to other manual pages.)
  29.      By default, man will try the following files in a manual  page  directory
  30.      for the command man -s 1 ls:
  31.           cat1/ls.1
  32.           cat1/ls.1.Z
  33.           man1/ls.1
  34.           man1/ls.1.Z
  35.                                                                              1
  36. MAN(1)                    Minix Programmer's Manual                     MAN(1)
  37.      Files in the man[1-8] directories are formatted with nroff  -man.   Those
  38.      in man9 are formatted with nroff -mnx.  Files in the cat? directories are
  39.      preformatted.  Files with names ending in .Z are decompressed first  with
  40.      zcat  (see compress(1)).  The end result is presented to the user using a
  41.      pager if displaying on the screen.
  42.      For each manual page directory in its search path, man will first try all
  43.      the  subdirectories of the manual page directory for the files above, and
  44.      then the directory itself.  The directory /usr/man contains the  standard
  45.      manual  pages,  with  manual  pages  for optional packages installed in a
  46.      subdirectory of /usr/man, with  the  same  structure  as  /usr/man.   The
  47.      directory   /usr/local/man   contains  manual  pages  for  locally  added
  48.      software.  By default /usr/local/man is searched first, then /usr/man.
  49.      A title is not simply used as a  filename,  because  several  titles  may
  50.      refer  to  the  same  manual page.  Each manual page directory contains a
  51.      database of titles in the whatis(5) file that is created by makewhatis(8)
  52.      from  the  NAME sections of all the manual pages.  A title is searched in
  53.      this database and the first title on a whatis line is used as a filename.
  54. OPTIONS
  55.      The options may be interspersed with  the  titles  to  search,  and  take
  56.      effect for the titles after them.
  57.      -a   Show all the manual pages or one line descriptions  with  the  given
  58.           title in all the specified sections in all the manual directories in
  59.           the search path.  Normally only the first page found is shown.
  60.      -n   Use nroff -man to format manual pages (default).
  61.      -t   Use troff -man to format manual pages.
  62.      -f   Use whatis(1) to show a one line description of the title  from  the
  63.           whatis(5) file.
  64.      -k   Use apropos(1) to show all the one line descriptions  of  the  title
  65.           anywhere in the whatis(5) files (implies -a).
  66.      -M path
  67.           Use path as the search path for manual directories.
  68.      -s section
  69.           Section is the section number the page is to be found in, or a comma
  70.           separated  list  of  sections  to  use.   Normally  all sections are
  71.           searched.  The search is always in numerical order  no  matter  what
  72.           your  section  list  looks  like.   A  single  digit is treated as a
  73.           section number without the -s for compatibility with  BSD-style  man
  74.           commands.
  75.                                                                              2
  76. MAN(1)                    Minix Programmer's Manual                     MAN(1)
  77. ENVIRONMENT
  78.      MANPATH        This is a colon separated list of  directories  to  search
  79.                     for manual pages, by default /usr/local/man:/usr/man.
  80.      PAGER          The program to use to display the manual page or one  line
  81.                     descriptions on the screen page by page.  By default more.
  82. FILES
  83.      /usr/man/whatis          One of the whatis(5) databases.
  84. SEE ALSO
  85.      nroff(1),  troff(1),  more(1),   whatis(1),   makewhatis(1),   catman(1),
  86.      whatis(5), man(7).
  87. AUTHOR
  88.      Kees J. Bot (kjb@cs.vu.nl)
  89.                                                                              3