README.md 2.83 KB
Newer Older
Marc Cornellà's avatar
Marc Cornellà committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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                     |
22
| `aar`             | Android library file                 |
Marc Cornellà's avatar
Marc Cornellà committed
23
24
25
| `bz2`             | Bzip2 file                           |
| `deb`             | Debian package                       |
| `gz`              | Gzip file                            |
26
| `ipa`             | iOS app package                      |
Marc Cornellà's avatar
Marc Cornellà committed
27
28
| `ipsw`            | iOS firmware file                    |
| `jar`             | Java Archive                         |
29
| `lrz`             | LRZ archive                          |
Aloxaf's avatar
Aloxaf committed
30
| `lz4`             | LZ4 archive                          |
Marc Cornellà's avatar
Marc Cornellà committed
31
32
| `lzma`            | LZMA archive                         |
| `rar`             | WinRAR archive                       |
33
| `rpm`             | RPM package                          |
Marc Cornellà's avatar
Marc Cornellà committed
34
35
36
37
| `sublime-package` | Sublime Text package                 |
| `tar`             | Tarball                              |
| `tar.bz2`         | Tarball with bzip2 compression       |
| `tar.gz`          | Tarball with gzip compression        |
38
| `tar.lrz`         | Tarball with lrzip compression       |
39
| `tar.lz`          | Tarball with lzip compression        |
Aloxaf's avatar
Aloxaf committed
40
| `tar.lz4`         | Tarball with lz4 compression         |
Marc Cornellà's avatar
Marc Cornellà committed
41
42
| `tar.xz`          | Tarball with lzma2 compression       |
| `tar.zma`         | Tarball with lzma compression        |
43
| `tar.zst`         | Tarball with zstd compression        |
Marc Cornellà's avatar
Marc Cornellà committed
44
45
46
47
48
| `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       |
49
| `tzst`            | Tarball with zstd compression        |
Marc Cornellà's avatar
Marc Cornellà committed
50
51
52
53
| `war`             | Web Application archive (Java-based) |
| `xpi`             | Mozilla XPI module file              |
| `xz`              | LZMA2 archive                        |
| `zip`             | Zip archive                          |
54
| `zst`             | Zstandard file (zstd)                |
Marc Cornellà's avatar
Marc Cornellà committed
55
56
57

See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for
more information regarding archive formats.