2016-09-29 22:37:14 +00:00
|
|
|
# extract plugin
|
|
|
|
|
|
|
|
This plugin defines a function called `extract` that extracts the archive file
|
|
|
|
you pass it, and it supports a wide variety of archive filetypes.
|
|
|
|
|
|
|
|
This way you don't have to know what specific command extracts a file, you just
|
|
|
|
do `extract <filename>` and the function takes care of the rest.
|
|
|
|
|
|
|
|
To use it, add `extract` to the plugins array in your zshrc file:
|
|
|
|
|
|
|
|
```zsh
|
|
|
|
plugins=(... extract)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Supported file extensions
|
|
|
|
|
|
|
|
| Extension | Description |
|
|
|
|
|:------------------|:-------------------------------------|
|
|
|
|
| `7z` | 7zip file |
|
|
|
|
| `Z` | Z archive (LZW) |
|
|
|
|
| `apk` | Android app file |
|
2019-01-15 18:03:07 +00:00
|
|
|
| `aar` | Android library file |
|
2016-09-29 22:37:14 +00:00
|
|
|
| `bz2` | Bzip2 file |
|
|
|
|
| `deb` | Debian package |
|
|
|
|
| `gz` | Gzip file |
|
|
|
|
| `ipsw` | iOS firmware file |
|
|
|
|
| `jar` | Java Archive |
|
|
|
|
| `lzma` | LZMA archive |
|
|
|
|
| `rar` | WinRAR archive |
|
2019-11-19 16:00:53 +00:00
|
|
|
| `rpm` | RPM package |
|
2016-09-29 22:37:14 +00:00
|
|
|
| `sublime-package` | Sublime Text package |
|
|
|
|
| `tar` | Tarball |
|
|
|
|
| `tar.bz2` | Tarball with bzip2 compression |
|
|
|
|
| `tar.gz` | Tarball with gzip compression |
|
2019-12-18 09:53:54 +00:00
|
|
|
| `tar.lz` | Tarball with lzip compression |
|
2016-09-29 22:37:14 +00:00
|
|
|
| `tar.xz` | Tarball with lzma2 compression |
|
|
|
|
| `tar.zma` | Tarball with lzma compression |
|
2019-12-17 16:35:40 +00:00
|
|
|
| `tar.zst` | Tarball with zstd compression |
|
2016-09-29 22:37:14 +00:00
|
|
|
| `tbz` | Tarball with bzip compression |
|
|
|
|
| `tbz2` | Tarball with bzip2 compression |
|
|
|
|
| `tgz` | Tarball with gzip compression |
|
|
|
|
| `tlz` | Tarball with lzma compression |
|
|
|
|
| `txz` | Tarball with lzma2 compression |
|
2019-12-17 16:35:40 +00:00
|
|
|
| `tzst` | Tarball with zstd compression |
|
2016-09-29 22:37:14 +00:00
|
|
|
| `war` | Web Application archive (Java-based) |
|
|
|
|
| `xpi` | Mozilla XPI module file |
|
|
|
|
| `xz` | LZMA2 archive |
|
|
|
|
| `zip` | Zip archive |
|
2019-12-17 16:35:40 +00:00
|
|
|
| `zst` | Zstandard file (zstd) |
|
2016-09-29 22:37:14 +00:00
|
|
|
|
|
|
|
See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for
|
|
|
|
more information regarding archive formats.
|