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

操作系统开发

开发平台:

C/C++

  1. CHGRP(1)                  Minix Programmer's Manual                   CHGRP(1)
  2. NAME
  3.      chgrp - change group
  4. SYNOPSIS
  5.      chgrp [-R] [owner:]group file ...
  6. OPTIONS
  7.      -R   Change directory hierarchies
  8. EXAMPLES
  9.      chgrp system file1 file2
  10.                          # Make system the group of the files
  11.      chrgp -R other dir1 # Make other the group of all files below dir1
  12. DESCRIPTION
  13.      The group field (and optionally  owner  field)  of  the  named  files  is
  14.      changed  to  group  and owner . Alternatively, a decimal gid (uid) may be
  15.      specified instead of a group name.  If the -R flag is used,  the  changes
  16.      will  be  applied recursively to all files in named directories. Only the
  17.      superuser may execute this command to set arbitrary groups. Normal  users
  18.      can  only  change  the group if they own the file, and the group is their
  19.      own group (Minix), or one of their supplementary groups (Minix-vmd).
  20. SEE ALSO
  21.      chown(1), chmod(1), ls(1), chown(2).
  22.                                                                              1