summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/extract/README.md
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/extract/README.md
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/extract/README.md')
-rw-r--r--zsh/oh-my-zsh/plugins/extract/README.md60
1 files changed, 0 insertions, 60 deletions
diff --git a/zsh/oh-my-zsh/plugins/extract/README.md b/zsh/oh-my-zsh/plugins/extract/README.md
deleted file mode 100644
index 44f0b05..0000000
--- a/zsh/oh-my-zsh/plugins/extract/README.md
+++ /dev/null
@@ -1,60 +0,0 @@
-# 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 |
-| `aar` | Android library file |
-| `bz2` | Bzip2 file |
-| `cab` | Microsoft cabinet archive |
-| `cpio` | Cpio archive |
-| `deb` | Debian package |
-| `ear` | Enterprise Application aRchive |
-| `gz` | Gzip file |
-| `ipa` | iOS app package |
-| `ipsw` | iOS firmware file |
-| `jar` | Java Archive |
-| `lrz` | LRZ archive |
-| `lz4` | LZ4 archive |
-| `lzma` | LZMA archive |
-| `rar` | WinRAR archive |
-| `rpm` | RPM package |
-| `sublime-package` | Sublime Text package |
-| `tar` | Tarball |
-| `tar.bz2` | Tarball with bzip2 compression |
-| `tar.gz` | Tarball with gzip compression |
-| `tar.lrz` | Tarball with lrzip compression |
-| `tar.lz` | Tarball with lzip compression |
-| `tar.lz4` | Tarball with lz4 compression |
-| `tar.xz` | Tarball with lzma2 compression |
-| `tar.zma` | Tarball with lzma compression |
-| `tar.zst` | Tarball with zstd 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 |
-| `tzst` | Tarball with zstd compression |
-| `war` | Web Application archive (Java-based) |
-| `xpi` | Mozilla XPI module file |
-| `xz` | LZMA2 archive |
-| `zip` | Zip archive |
-| `zst` | Zstandard file (zstd) |
-
-See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for
-more information regarding archive formats.