Katakanlah Anda memiliki file,, file1
yang Anda tahu harus memiliki atribut yang identik file2
(Anda tahu yang file2
memiliki atribut yang benar).
$ 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: -
Salah satu cara untuk memastikan bahwa mereka cocok adalah dengan pergi dan memeriksa file2
dan secara manual menerapkan atribut:
$ chmod 644 file1
Ini, bagaimanapun, rumit untuk mengotomatisasi dan skrip. Akan lebih mudah untuk mendapatkan atribut dari file2
dan menerapkannya secara file1
terprogram.
$ 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
tidak melakukan apa pun dengan sendirinya; itu perlu dikombinasikan dengan bendera pelestarian atribut lainnya. Dari 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
digunakan di atas, yang didokumentasikan sebagai setara dengan --preserve=mode,ownership,timestamps
. Secara internal, Anda dapat menganggap ini sebagai "jangan salin data" daripada "salin atribut saja", itulah sebabnya Anda harus lulus --preserve
.