https://github.com/missn0body/rle
A terminal program to compress files using RLE
https://github.com/missn0body/rle
compression linux run-length-decoding run-length-encoding terminal terminal-based
Last synced: about 2 months ago
JSON representation
A terminal program to compress files using RLE
- Host: GitHub
- URL: https://github.com/missn0body/rle
- Owner: missn0body
- License: mit
- Created: 2024-05-13T22:05:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-29T14:57:09.000Z (12 months ago)
- Last Synced: 2025-02-07T12:14:32.052Z (3 months ago)
- Topics: compression, linux, run-length-decoding, run-length-encoding, terminal, terminal-based
- Language: C
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rle
A simple run-length encoder/decoder
Created in 2024 by anson.This program uses a lossless [run-length encoding algorithm](https://en.wikipedia.org/wiki/Run-length_encoding)
to compress ASCII files. There hasn't been any
extensive testing with binary or other data files.
For best results, use ASCII files with long runs of
characters, but `rle` will not inflate any file to more
than its original size.Usage and options can be read by invoking `rle --help` at the
command line. This project is licensed under the MIT License, See
LICENSE for related details. Issues, bugs, and other things can be
discussed at my E-Mail,### v.1.0.0
(May 2024)
A simple run-length encoder/decoder