Updated documentation for new LZMA support.
This commit is contained in:
parent
bc7e99b35b
commit
82a85abb33
|
@ -26,7 +26,7 @@ as a fallback with file(1).
|
|||
.PP
|
||||
\fBpatool\fP supports 7z (.7z), ZIP (.zip, .jar), GZIP (.gz), compress (.Z),
|
||||
BZIP2 (.bz2), TAR (.tar), ARJ (.arj), CAB (.cab), CPIO (.cpio),
|
||||
RPM (.rpm), DEB (.deb), LZOP (.lzo)and RAR (.rar) formats.
|
||||
RPM (.rpm), DEB (.deb), LZOP (.lzo), LZMA (.lzma) and RAR (.rar) formats.
|
||||
It relies on helper applications to handle those archive formats
|
||||
(for example bzip2 for BZIP2 archives).
|
||||
.SH COMMANDS
|
||||
|
|
|
@ -11,25 +11,33 @@ SYNOPSIS
|
|||
patool formats [options]
|
||||
|
||||
DESCRIPTION
|
||||
Various archive types can be created, extracted, tested and listed by patool. The archive format is determined by the archive file extension and as a fallback with
|
||||
file(1).
|
||||
Various archive types can be created, extracted, tested and listed by
|
||||
patool. The archive format is determined by the archive file extension
|
||||
and as a fallback with file(1).
|
||||
|
||||
patool supports 7z (.7z), ZIP (.zip, .jar), GZIP (.gz), compress (.Z), BZIP2 (.bz2), TAR (.tar), ARJ (.arj), CAB (.cab), CPIO (.cpio), RPM (.rpm), DEB (.deb), LZOP
|
||||
(.lzo)and RAR (.rar) formats. It relies on helper applications to handle those archive formats (for example bzip2 for BZIP2 archives).
|
||||
patool supports 7z (.7z), ZIP (.zip, .jar), GZIP (.gz), compress (.Z),
|
||||
BZIP2 (.bz2), TAR (.tar), ARJ (.arj), CAB (.cab), CPIO (.cpio), RPM
|
||||
(.rpm), DEB (.deb), LZOP (.lzo), LZMA (.lzma) and RAR (.rar) formats.
|
||||
It relies on helper applications to handle those archive formats (for
|
||||
example bzip2 for BZIP2 archives).
|
||||
|
||||
COMMANDS
|
||||
Several commands and options are available.
|
||||
|
||||
extract
|
||||
Extract files from an archive4. Often one wants to extract all files in an archive to a single subdirectory. However, some archives contain multiple files in their
|
||||
root directories. The patool program overcomes this problem by first extracting files to a unique (temporary) directory, and then moving its contents back if possible.
|
||||
This also prevents local files from being overwritten by mistake.
|
||||
Extract files from an archive4. Often one wants to extract all files in
|
||||
an archive to a single subdirectory. However, some archives contain
|
||||
multiple files in their root directories. The patool program overcomes
|
||||
this problem by first extracting files to a unique (temporary) direc‐
|
||||
tory, and then moving its contents back if possible. This also prevents
|
||||
local files from being overwritten by mistake.
|
||||
|
||||
--force
|
||||
Allow overwriting of local files.
|
||||
|
||||
--verbose
|
||||
Be verbose when extracting (if the helper application supports it).
|
||||
Be verbose when extracting (if the helper application supports
|
||||
it).
|
||||
|
||||
--help Show help for this command.
|
||||
|
||||
|
@ -66,9 +74,11 @@ COMMANDS
|
|||
--help Show help for this command.
|
||||
|
||||
CONFIGURATION
|
||||
The configuration files (see FILES) can specify which program to use for each archive format. Per default a list of programs are searched and the first one will be used
|
||||
for an archive.
|
||||
Additionally, default options like verbosity and force overwrite can be configured.
|
||||
The configuration files (see FILES) can specify which program to use
|
||||
for each archive format. Per default a list of programs are searched
|
||||
and the first one will be used for an archive.
|
||||
Additionally, default options like verbosity and force overwrite can be
|
||||
configured.
|
||||
The configuration format is the Windows INI format.
|
||||
|
||||
|
||||
|
@ -83,7 +93,8 @@ CONFIGURATION
|
|||
Supported archive formats are listed by the formats command.
|
||||
|
||||
command=/usr/bin/mycommand
|
||||
Set the application to handle the archive format for given command. command can be one of (extract, list, test, create).
|
||||
Set the application to handle the archive format for given com‐
|
||||
mand. command can be one of (extract, list, test, create).
|
||||
|
||||
FILES
|
||||
/etc/patool.conf, ~/.patool.conf - configuration files
|
||||
|
|
|
@ -1 +1 @@
|
|||
- Support XZ and LZMA archives
|
||||
- Support XZ archives
|
||||
|
|
Loading…
Reference in New Issue