Skip to content
/ rle Public

A terminal program to compress files using RLE

License

Notifications You must be signed in to change notification settings

missn0body/rle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

rle

A simple run-length encoder/decoder
Created in 2024 by anson.

This program uses a lossless run-length encoding algorithm 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, [email protected]

v.1.0.0

(May 2024) A simple run-length encoder/decoder