Your compressed file, say compressedfilename.dat
must be in the format of output.dat
file from my Huffman Encoder project.
To run from terminal, do the following steps:
-
Go to project direcotry and run
make
to create the executable -
Put compressedfilename.dat in the directory of the executable
-
Using terminal in the folder that contains the target file, run
./decoder compressedfilename.dat outputfile
-
The code will create an
outputfile.txt
file which will be the uncompressed version for the file. -
To cleanup executable run
make clean