Skip to content

Releases: ChuOkupai/rle-compression

v1.1

15 Mar 00:23
Compare
Choose a tag to compare
  • Added install and uninstall targets in Makefile
  • Modified decompression option, passing from -e to -x
  • Typo correction

First stable version

18 Jan 20:32
Compare
Choose a tag to compare

Compile from source

Use the following command:

make

or

make rle

Usage

./rle [OPTION] SOURCE DEST

Options list:

  • -c
    compress SOURCE to DEST
  • -e
    extract SOURCE to DEST
  • --help
    display help and exit
  • --version
    output version information and exit

Example

To compress the file named foobar.txt, the command will be:

./rle -c foobar.txt foobar.rle

Extract a rle file:

./rle -e foobar.rle foobar.old