成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

chown 中文man頁面

系統
chown 修改每個由第一個非選項參數聲明的給定 file(文件) 的用戶和/或組的所有權.如下: 如果只給出了用戶名(或者數字用戶標識),那么該用戶即成為每個指定文件的所有者,而該文件的組別并不改變.如果用戶名后面緊跟著冒號和組名(或者是數字組標識),并且它們之間沒有空格,那么文件的組所有權也隨之改變.

名字

chown - 修改文件所有者和組別  

總覽

chown [options] user [:group] file...

POSIX 選項: [-R]

GNU 選項(最短格式): [-cfhvR] [--dereference] [--reference=rfile] [--help] [--version] [--]  

描述

chown 修改每個由***個非選項參數聲明的給定 file(文件) 的用戶和/或組的所有權.如下: 如果只給出了用戶名(或者數字用戶標識),那么該用戶即成為每個指定文件的所有者,而該文件的組別并不改變.如果用戶名后面緊跟著冒號和組名(或者是數字組標識),并且它們之間沒有空格,那么文件的組所有權也隨之改變.  

GNU細節

GNU版本允許使用一個點來替代冒號(學BSD的).[因為點是有效的用戶名中的字符,所以這不被POSIX所接納.]如果有一個冒號或者點,卻沒有組名跟在用戶名后,那么該用戶即成為文件的所有者,而且文件的組改為該用戶的登錄組.如果給定了冒號或者點,以及組,但是省略了用戶名,那么只有文件的組被修改;在這種情況下, chown 執行的是與 chgrp 相同的功能.  

POSIX選項

-R
遞歸地修改目錄及其下面內容的所有權.

GNU選項

-c, --changes
詳盡地描述每個 file 實際改變了哪些所有權.
-f, --silent, --quiet
不打印文件所有權不能修改的報錯信息.
-h, --no-dereference
只作用于其本身的符號鏈接,而不修改它們所指向的文件. 這只在提供了 lchown 系統調用的情況下才可用.
-v, --verbose
詳盡地描述對每個 file 所執行的操作(或者無操作).
-R, --recursive
遞歸地修改目錄及其下面內容的所有權.
--dereference
修改符號鏈接目標端的所有權,而非符號鏈接自身. (fileutils 4.0中實現的新功能.)
--reference=rfile
(fileutils 4.0中實現的新功能.) 修改 file 的所有權為 rfile 的所有權.

GNU標準選項

--help
在標準輸出上打印一條用法信息,并以成功狀態退出.
--version
在標準輸出上打印版本信息,然后以成功狀態退出.
--
終止選項列表.

環境變量

變量LANG, LC_ALL, LC_CTYPE和LC_MESSAGES取其常用義.  

遵循

POSIX 1003.2不允許使用點作為用戶名和組名的分隔符.  

備注

本頁描述了包括在fileutils-4.0包中的 chown; 其它版本會有細微差別. 請將您的修正和增補建議發到aeb@cwi.nl. 程序中的bugs請報告到 fileutils-bugs@gnu.ai.mit.edu.  

#p#

NAME

chown - change file owner and group  

SYNOPSIS

chown [OPTION]... OWNER[:[GROUP]] FILE...
chown [OPTION]... :GROUP FILE...
chown [OPTION]... --reference=RFILE FILE...  

DESCRIPTION

This manual page documents the GNU version of chown. chown changes the user and/or group ownership of each given file, according to its first non-option argument, which is interpreted as follows. If only a user name (or numeric user ID) is given, that user is made the owner of each given file, and the files' group is not changed. If the user name is followed by a colon or dot and a group name (or numeric group ID), with no spaces between them, the group ownership of the files is changed as well. If a colon or dot but no group name follows the user name, that user is made the owner of the files and the group of the files is changed to that user's login group. If the colon or dot and group are given, but the user name is omitted, only the group of the files is changed; in this case, chown performs the same function as chgrp.  

OPTIONS

Change the owner and/or group of each FILE to OWNER and/or GROUP. With --reference, change the owner and group of each FILE to those of RFILE.

-c, --changes
like verbose but report only when a change is made
--dereference
affect the referent of each symbolic link, rather than the symbolic link itself (this is the default)
-h, --no-dereference
affect each symbolic link instead of any referenced file (useful only on systems that can change the ownership of a symlink)
--from=CURRENT_OWNER:CURRENT_GROUP
change the owner and/or group of each file only if its current owner and/or group match those specified here. Either may be omitted, in which case a match is not required for the omitted attribute.
--no-preserve-root do not treat `/' specially (the default)
--preserve-root
fail to operate recursively on `/'
-f, --silent, --quiet
suppress most error messages
--reference=RFILE
use RFILE's owner and group rather than the specifying OWNER:GROUP values
-R, --recursive
operate on files and directories recursively
-v, --verbose
output a diagnostic for every file processed

The following options modify how a hierarchy is traversed when the -R option is also specified. If more than one is specified, only the final one takes effect.

-H
if a command line argument is a symbolic link to a directory, traverse it
-L
traverse every symbolic link to a directory encountered
-P
do not traverse any symbolic links (default)
--help
display this help and exit
--version
output version information and exit

Owner is unchanged if missing. Group is unchanged if missing, but changed to login group if implied by a `:'. OWNER and GROUP may be numeric as well as symbolic.  

AUTHOR

Written by David MacKenzie and Jim Meyering.  

REPORTING BUGS

Report bugs to <bug-coreutils@gnu.org>.  

COPYRIGHT

Copyright © 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  

SEE ALSO

The full documentation for chown is maintained as a Texinfo manual. If the info and chown programs are properly installed at your site, the command

info coreutils chown

should give you access to the complete manual.

責任編輯:韓亞珊 來源: CMPP.net
相關推薦

2011-08-15 10:21:09

man中文man

2011-08-24 16:48:36

man中文man

2011-08-11 16:11:49

at中文man

2011-08-25 10:21:56

man.conf中文man

2011-08-11 15:39:39

apm中文man

2011-08-11 17:10:55

cat中文man

2011-08-11 17:35:07

chgrp中文man

2011-08-11 17:59:24

chsh中文man

2011-08-11 18:07:57

cksum中文man

2011-08-11 18:19:32

col中文man

2011-08-11 18:58:08

date中文man

2011-08-12 09:17:57

deallocvt中文man

2011-08-12 09:23:16

dig中文man

2011-08-12 10:15:13

dumpkeys中文man

2011-08-12 10:41:00

file中文man

2011-08-12 11:15:27

gzip中文man

2011-08-12 13:26:56

groff中文man

2011-08-12 14:10:47

install中文man

2011-08-12 14:58:05

killall中文man

2011-08-15 10:29:02

mesg中文man
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 欧美色综合一区二区三区 | 久久久成 | 国产精品视频不卡 | 日韩激情免费 | 欧美三区| 欧美日韩一卡二卡 | 91久色 | 久久一二 | 日韩精品一区二区三区中文在线 | 欧美一级黑人aaaaaaa做受 | 无码一区二区三区视频 | 蜜桃毛片| 亚洲狠狠爱一区二区三区 | 成人一级毛片 | 成人在线精品视频 | 日韩中文在线视频 | 国产精品精品久久久久久 | 拍拍无遮挡人做人爱视频免费观看 | 久久精品国产99国产精品亚洲 | 中文字幕日韩欧美一区二区三区 | 不卡在线视频 | 国产精品区二区三区日本 | 91精品国产91久久综合桃花 | 中文在线一区二区 | 狠狠爱网址 | 一区二区三区四区电影视频在线观看 | 伊色综合久久之综合久久 | 国产一区二区电影 | 在线看片福利 | 亚洲福利电影网 | 国产一区二区观看 | 久久久久久久久91 | 午夜久久av | 手机三级电影 | 精品国产欧美 | 99视频免费 | 伊人网国产 | 久久久久国产一区二区三区 | 不卡欧美 | 高清av在线 | 成人毛片一区二区三区 |