Crates.io | anycat |
lib.rs | anycat |
version | 0.2.0 |
source | src |
created_at | 2017-12-01 23:57:53.642154 |
updated_at | 2021-02-06 13:39:17.16988 |
description | Anycat is an extremely simple crate and tool that lets you unpack some single file archive and print its content to the standard output (or process it as a regular `BufRead`). |
homepage | https://github.com/xgillard/anycat |
repository | https://github.com/xgillard/anycat.git |
max_upload_size | |
id | 41284 |
size | 12,272 |
Anycat is an extremely simple crate and tool that lets you unpack some single
file archive and print its content to the standard output (or process it as
a regular BufRead
).
It supports quite a few decompression algorithms. Namely:
Its indended use is to simplify the cases where you want to chose between cat,
gzcat, bzcat, ... to print a file. Whenever you want to do this, you might
just as well call anycat <your_file>
and you should get the right result.
This project is written in plain Rust, so you should be able to build it w/o
any trouble by simply issuing the cargo build --release
command.
Even though I wrote anycat
, the heavy lifting was done by the guys who wrote
the many decompression crates for Rust and made them available on crates.io.
If you are one of these guys, thank you !