Digamos que você tenha um arquivo, file1
que você saiba que deve ter atributos idênticos file2
(você sabe que file2
possui os atributos corretos).
$ stat file{1,2}
File: 'file1'
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 1fh/31d Inode: 2326956 Links: 1
Access: (0600/-rw-------) Uid: ( 1000/ chris) Gid: ( 1000/ chris)
Access: 2013-12-24 09:53:20.248720441 +0800
Modify: 2013-12-24 09:53:20.248720441 +0800
Change: 2013-12-24 09:53:31.011984772 +0800
Birth: -
File: 'file2'
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 1fh/31d Inode: 2326957 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/ chris) Gid: ( 1000/ chris)
Access: 2013-12-24 09:53:21.045382001 +0800
Modify: 2013-12-24 09:53:21.045382001 +0800
Change: 2013-12-24 09:53:21.045382001 +0800
Birth: -
Uma maneira de garantir que eles correspondam é verificar file2
e aplicar manualmente os atributos:
$ chmod 644 file1
No entanto, isso é complicado de automatizar e criar scripts. Seria mais fácil obter os atributos file2
e aplicá-los file1
programaticamente.
$ cp --attributes-only --preserve file2 file1
$ stat file1
File: 'file1'
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 1fh/31d Inode: 2326956 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/ chris) Gid: ( 1000/ chris)
Access: 2013-12-24 09:53:21.045382001 +0800
Modify: 2013-12-24 09:53:21.045382001 +0800
Change: 2013-12-24 09:57:06.320604649 +0800
Birth: -
--attributes-only
não faz nada por si só; ele precisa ser combinado com outros sinalizadores de preservação de atributo. De info cp
:
--attributes-only
Copy only the specified attributes of the source file to the
destination. If the destination already exists, do not alter its
contents. See the `--preserve' option for controlling which
attributes to copy.
--preserve
é usado acima, documentado como sendo equivalente a --preserve=mode,ownership,timestamps
. Internamente, você pode pensar nisso como "não copie dados" em vez de "apenas copiar atributos", e é por isso que você precisa passar --preserve
independentemente.