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

操作系统开发

开发平台:

C/C++

  1. CHMOD(1)                  Minix Programmer's Manual                   CHMOD(1)
  2. NAME
  3.      chmod - change access mode for files
  4. SYNOPSIS
  5.      chmod [-R] mode file ...
  6. OPTIONS
  7.      -R   Change hierarchies recursively
  8. EXAMPLES
  9.      chmod 755 file      # Owner: rwx Group: r-x Others: r-x
  10.      chmod +x file1 file2
  11.                          # Make file1 and file2 executable
  12.      chmod a-w file      # Make file read only
  13.      chmod u+s file      # Turn on SETUID for file
  14.      chmod -R o+w dir    # Allow writing for all files in dir
  15. DESCRIPTION
  16.      The given mode is applied to each file in the file list. If the  -R  flag
  17.      is  present,  the files in a directory will be changed as well.  The mode
  18.      can be either absolute or symbolic. Absolute modes are given as an  octal
  19.      number  that  represents  the new file mode. The mode bits are defined as
  20.      follows:
  21.         4000    Set effective user id on execution to file's owner id
  22.         2000    Set effective group id on execution to file's group id
  23.         0400    file is readable by the owner of the file
  24.         0200    writeable by owner
  25.         0100    executable by owner
  26.         0070    same as above, for other users in the same group
  27.         0007    same as above, for all other users
  28.      Symbolic modes modify the current file mode in a specified way. The  form
  29.      is:
  30.         [who] op permissions { op permissions ...} {, [who] op ... }
  31.      The possibilities for who are u, g, o, and a, standing for  user,  group,
  32.      other  and  all,  respectively.  If who is omitted, a is assumed, but the
  33.      current umask is used. The op can be +, -, or =;  + turns  on  the  given
  34.      permissions, - turns them off; = sets the permissions exclusively for the
  35.      given who. For example g=x sets the group permissions to --x.
  36.                                                                              1
  37. CHMOD(1)                  Minix Programmer's Manual                   CHMOD(1)
  38.      The possible permissions are r, w, x; which stand for  read,  write,  and
  39.      execute;   s  turns on the set effective user/group id bits. s only makes
  40.      sense with u and g; o+s is harmless.
  41. SEE ALSO
  42.      ls(1), chmod(2).
  43.                                                                              2