diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-09-30 00:37:14 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-09-30 00:38:21 +0200 |
commit | bac896fca7b1af1e4237e96c58a0c13b8ff2d0de (patch) | |
tree | 0b85ba7a5a658729837206275dd21bc377e726db /plugins/extract | |
parent | b5dc976d236e8f8d276aa0aeff49980bfccb0532 (diff) | |
download | zsh-bac896fca7b1af1e4237e96c58a0c13b8ff2d0de.tar.gz zsh-bac896fca7b1af1e4237e96c58a0c13b8ff2d0de.tar.bz2 zsh-bac896fca7b1af1e4237e96c58a0c13b8ff2d0de.zip |
extract: add README
Diffstat (limited to 'plugins/extract')
-rw-r--r-- | plugins/extract/README.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/plugins/extract/README.md b/plugins/extract/README.md new file mode 100644 index 000000000..c6bdd36dd --- /dev/null +++ b/plugins/extract/README.md @@ -0,0 +1,46 @@ +# 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 | +| `bz2` | Bzip2 file | +| `deb` | Debian package | +| `gz` | Gzip file | +| `ipsw` | iOS firmware file | +| `jar` | Java Archive | +| `lzma` | LZMA archive | +| `rar` | WinRAR archive | +| `sublime-package` | Sublime Text package | +| `tar` | Tarball | +| `tar.bz2` | Tarball with bzip2 compression | +| `tar.gz` | Tarball with gzip compression | +| `tar.xz` | Tarball with lzma2 compression | +| `tar.zma` | Tarball with lzma compression | +| `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 | +| `war` | Web Application archive (Java-based) | +| `xpi` | Mozilla XPI module file | +| `xz` | LZMA2 archive | +| `zip` | Zip archive | + +See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for +more information regarding archive formats. |