rustGzip is a fast and simple command-line tool written in Rust for compressing and decompressing files. It provides a lightweight and efficient way to handle file compression tasks directly from the terminal.
- Compress files quickly.
- Decompress previously compressed files.
- Intuitive and simple CLI interface.
- Written in Rust for speed, safety, and reliability.
- Clone the repository:
git clone https://github.com/yourusername/rustGzip.git
cd rustGzip
cargo build --release./target/release/rustgzip -hOptional: add the binary to your PATH for easier global usage.
rustgzip -f <FILE_PATH> <MODE>| Argument | Description |
|---|---|
-f, --file <FILE_NAME> |
Path to the file to compress or decompress |
mode |
Operation mode. Options: compress or decompress |
rustgzip -f example.txt compressrustgzip -f example.txt.gz decompressrustgzip -h