mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-11-09 21:12:36 +00:00
* archive: fix unrar check when using unrar-free unrar-free returns the error code 1 when run without arguments, thus failing the presence check. Replacing the current presence check with (( $+commands[unrar] )) fixes the problem. * archive: add unar support for lsarchive and unarchive No `archive` support with unar.
Archive
Provides functions to create, list, and extract archives.
Functions
archivecreates an archive based on the provided archive name.lsarchivelists the contents of one or more archives.unarchiveextracts the contents of one or more archives.
Supported Formats
The following archive formats are supported when the required utilities are installed:
- .tar.gz, .tgz require
tar(optionallypigz). - .tar.bz2, .tbz require
tar(optionallypbzip2). - .tar.xz, .txz require
tarwith xz support. - .tar.zma, .tlz require
tarwith lzma support. - .tar requires
tar. - .gz requires
gunzip. - .bz2 requires
bunzip2. - .xz requires
unxz. - .lzma requires
unlzma. - .Z requires
uncompress. - .zip, .jar requires
unzip. - .rar requires
rar(needed forarchivesupport),unrarorlsarandunar. - .7z requires
7za. - .deb requires
ar,tar.
Additionally, if pigz and/or pbzip2 are installed, archive will use them over
their traditional counterparts, gzip and bzip2 respectively, to take full advantage
of all available CPU cores for compression.
Authors
The authors of this module should be contacted via the issue tracker.