Go to the previous, next section.
(This message will disappear, once this node revised.)
Handling of file attributes
--atime-preserve
-m
--modification-time
When this option is used, tar
leaves the modification times
of the files it extracts as the time when the files were extracted,
instead of setting it to the time recorded in the archive.
This option is meaningless with `--list' (`-t').
--same-owner
-p
--same-permissions
--preserve-permissions
This option causes tar
to set the modes (access permissions) of
extracted files exactly as recorded in the archive. If this option
is not used, the current umask
setting limits the permissions
on extracted files.
This option is meaningless with `--list' (`-t').
-s
--same-order
--preserve-order
This option tells tar
that the list of file names to be listed
or extracted is sorted in the same order as the files in the archive.
This allows a large list of names to be used, even on a small machine
that would not otherwise be able to hold all the names in memory at
the same time. Such a sorted list can easily be created by running
`tar -t' on the archive and editing its output.
This option is probably never needed on modern computer systems.
--preserve
The `--preserve' option has no equivalent short option name. It is equivalent to `--same-permissions' (`-p') plus `--same-order' (`-s').
Go to the previous, next section.