Tools for compressing using zlib 1.2.2 Usage: 1. myzip input_file output_file compress input text file into output binary file 2. myunzip input_file output_file uncompress input binary file into output text file 3. readzip input_file read the compressed binary file, and print the text into standard output. zlib can be downloaded at http://www.gzip.org/zlib/ Update: Dec 19, 2004 by Zheyuan Yu To compile: ./compile.sh Example: 1. To compress the README file into file compr: myzip README compr 2. To read the compressed file compr: readzip compr 3. To uncompress the compressed file compr into uncompressed file uncompr: myunzip compr uncompr