Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moisutsu/melt
Command-line tool to decompress files of various extensions
https://github.com/moisutsu/melt
cui-tool decompress-files rust
Last synced: 27 days ago
JSON representation
Command-line tool to decompress files of various extensions
- Host: GitHub
- URL: https://github.com/moisutsu/melt
- Owner: moisutsu
- License: mit
- Created: 2020-10-25T10:48:14.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-14T06:35:42.000Z (almost 3 years ago)
- Last Synced: 2024-09-17T12:37:28.506Z (about 2 months ago)
- Topics: cui-tool, decompress-files, rust
- Language: Rust
- Homepage: https://crates.io/crates/melt
- Size: 64.5 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Welcome to melt 👋
> This is a command-line tool to decompress files of various extensions
The supported extensions are as follows.
| Extension | Compression Format | Decompression tool |
| --------------- | ------------------ | ------------------ |
| zip | zip | unzip |
| gz | gzip | gunzip |
| Z | compress | uncompress |
| bz2 | bzip2 | bunzip2 |
| tar | tar | tar |
| tar.gz
tgz | tar + gzip | tar |
| tar.Z
taz | tar + compress | tar |
| tar.bz2
tbz2 | tar + bzip2 | tar |
| tar.xz | tar + xz | tar |
## Install```sh
cargo install melt
```## Usage
It automatically recognizes the file extension and calls the decompression tool internally to decompress the file.
```sh
melt sample.zip
melt sample.gz
melt sample.tar.gz
```## Author
👤 **moisutsu**
* Twitter: [@moisutsu](https://twitter.com/moisutsu)
* Github: [@moisutsu](https://github.com/moisutsu)## Show your support
Give a ⭐️ if this project helped you!
## 📝 License
Copyright © 2020 [moisutsu](https://github.com/moisutsu).
This project is [MIT](https://github.com/moisutsu/melt/blob/master/LICENSE) licensed.***
_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_