home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / utility / misc / fileutil.lha / fileutils-3.3 / cat / install.1 < prev    next >
Encoding:
Text File  |  1992-08-28  |  2.8 KB  |  133 lines

  1.  
  2.  
  3.  
  4. INSTALL(1L)       MISC. REFERENCE MANUAL PAGES        INSTALL(1L)
  5.  
  6.  
  7.  
  8. NAME
  9.      install - copy files and set their attributes
  10.  
  11. SYNOPSIS
  12.      install [options] [-s] [--strip] source dest
  13.      install [options] [-s] [--strip] source... directory
  14.      install [options] [-d,--directory] directory...
  15.      Options:
  16.      [-c]  [-g  group]  [-m  mode]  [-o  owner]   [--group=group]
  17.      [--mode=mode] [--owner=owner]
  18.  
  19. DESCRIPTION
  20.      This manual page  documents  the  GNU  version  of  install.
  21.      install copies files and sets their permission modes and, if
  22.      possible, their owner and group.  Used similarly to cp; typ-
  23.      ically  used in Makefiles to copy programs into their desti-
  24.      nation directories.  It can also be used to create the  des-
  25.      tination directories and any leading directories, and to set
  26.      the final directory's modes.  It refuses to copy files  onto
  27.      themselves.
  28.  
  29.   OPTIONS
  30.      -_c   Ignored; for compatibility with old  Unix  versions  of
  31.           install.
  32.  
  33.      -_d, --_d_i_r_e_c_t_o_r_y
  34.           Create each given  directory  and  its  leading  direc-
  35.           tories,  if  they do not already exist.  Set the owner,
  36.           group and mode as given on the command line or  to  the
  37.           defaults.   Also gives any leading directories that are
  38.           created those attributes.  This is different  from  the
  39.           SunOS  4.x  _i_n_s_t_a_l_l,  which  gives  directories that it
  40.           creates the default attributes.
  41.  
  42.      -_g, --_g_r_o_u_p _g_r_o_u_p
  43.           Set the group ownership of the installed file or direc-
  44.           tory  to  the  group  ID of _g_r_o_u_p (default is process's
  45.           current group). _g_r_o_u_p may also be a numeric group ID.
  46.  
  47.      -_m, --_m_o_d_e _m_o_d_e
  48.           Set the permission  mode  for  the  installed  file  or
  49.           directory to _m_o_d_e, which can be either an octal number,
  50.           or a symbolic mode as in chmod, with 0 as the point  of
  51.           departure.  The default mode is 0755.
  52.  
  53.      -_o, --_o_w_n_e_r _o_w_n_e_r
  54.           If run as root, set the ownership of the installed file
  55.           to  the  user  ID of _o_w_n_e_r (default is root). _o_w_n_e_r may
  56.           also be a numeric user ID.
  57.  
  58.      -_s, --_s_t_r_i_p
  59.           Strip the symbol tables from installed programs.
  60.  
  61.  
  62.  
  63. Sun Release 4.1           Last change:                          1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. INSTALL(1L)       MISC. REFERENCE MANUAL PAGES        INSTALL(1L)
  71.  
  72.  
  73.  
  74.      The long-named options can be introduced with `+' as well as
  75.      `--',  for compatibility with previous releases.  Eventually
  76.      support for `+' will be removed, because it is  incompatible
  77.      with the POSIX.2 standard.
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129. Sun Release 4.1           Last change:                          2
  130.  
  131.  
  132.  
  133.