0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/extract/README.md

66 lines
3.3 KiB
Markdown
Raw Normal View History

2016-09-30 00:37:14 +02: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.
2016-09-30 00:37:14 +02:00
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.
2016-09-30 00:37:14 +02:00
To use it, add `extract` to the plugins array in your zshrc file:
```zsh
plugins=(... extract)
```
## Supported file extensions
| Extension | Description |
| :---------------- | :----------------------------------- |
2016-09-30 00:37:14 +02:00
| `7z` | 7zip file |
| `Z` | Z archive (LZW) |
| `apk` | Android app file |
| `aar` | Android library file |
2016-09-30 00:37:14 +02:00
| `bz2` | Bzip2 file |
| `cab` | Microsoft cabinet archive |
2021-06-09 13:29:04 +02:00
| `cpio` | Cpio archive |
2016-09-30 00:37:14 +02:00
| `deb` | Debian package |
| `ear` | Enterprise Application aRchive |
| `exe` | Windows executable file |
2016-09-30 00:37:14 +02:00
| `gz` | Gzip file |
| `ipa` | iOS app package |
2016-09-30 00:37:14 +02:00
| `ipsw` | iOS firmware file |
| `jar` | Java Archive |
2019-12-29 05:36:29 +01:00
| `lrz` | LRZ archive |
2020-01-04 17:15:24 +01:00
| `lz4` | LZ4 archive |
2016-09-30 00:37:14 +02:00
| `lzma` | LZMA archive |
| `obscpio` | cpio archive used on OBS |
2016-09-30 00:37:14 +02:00
| `rar` | WinRAR archive |
| `rpm` | RPM package |
2016-09-30 00:37:14 +02:00
| `sublime-package` | Sublime Text package |
| `tar` | Tarball |
| `tar.bz2` | Tarball with bzip2 compression |
| `tar.gz` | Tarball with gzip compression |
2019-12-29 05:36:29 +01:00
| `tar.lrz` | Tarball with lrzip compression |
2019-12-18 10:53:54 +01:00
| `tar.lz` | Tarball with lzip compression |
2020-01-04 17:15:24 +01:00
| `tar.lz4` | Tarball with lz4 compression |
2016-09-30 00:37:14 +02:00
| `tar.xz` | Tarball with lzma2 compression |
| `tar.zma` | Tarball with lzma compression |
2019-12-17 17:35:40 +01:00
| `tar.zst` | Tarball with zstd compression |
2016-09-30 00:37:14 +02: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 17:35:40 +01:00
| `tzst` | Tarball with zstd compression |
2016-09-30 00:37:14 +02:00
| `war` | Web Application archive (Java-based) |
| `whl` | Python wheel file |
2016-09-30 00:37:14 +02:00
| `xpi` | Mozilla XPI module file |
| `xz` | LZMA2 archive |
| `zip` | Zip archive |
| `zlib` | zlib archive |
2019-12-17 17:35:40 +01:00
| `zst` | Zstandard file (zstd) |
| `zpaq` | Zpaq file |
2016-09-30 00:37:14 +02:00
See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for more information
regarding archive formats.