CHOWN.8
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. CHOWN(8)                  Minix Programmer's Manual                   CHOWN(8)
  2. NAME
  3.      chown - change owner
  4. SYNOPSIS
  5.      chown [-R] owner[:group] file ...
  6. OPTIONS
  7.      -R   Change directory hierarchies
  8. EXAMPLES
  9.      chown ast file1 file2
  10.                          # Make ast the owner of the files
  11.      chown -R ast:other dir
  12.                          # Change the owner and group of all files in dir
  13. DESCRIPTION
  14.      The owner field (and optionally  group  field)  of  the  named  files  is
  15.      changed  to owner (i.e., login name specified) and group . Alternatively,
  16.      a decimal uid(gid) may be specified instead of a  user  name.   Only  the
  17.      superuser may execute this command.
  18. SEE ALSO
  19.      chgrp(1), chmod(1), ls(1), chown(2).
  20.                                                                              1