Releases: ChuOkupai/rle-compression
Releases · ChuOkupai/rle-compression
v1.1
First stable version
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