Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stapelberg/mscompress

compress data using LZ77 algorithm
https://github.com/stapelberg/mscompress

Last synced: 27 days ago
JSON representation

compress data using LZ77 algorithm

Awesome Lists containing this project

README

        

mscompress, Microsoft "compress.exe/expand.exe" compatible (de)compressor
Copyright (c) 2000 Martin Hinner
Algorithm & data structures by M. Winterhoff <[email protected]>
ftp://ftp.penguin.cz/pub/users/mhi/mscompress/

This package contains two programs:

msexpand, which decompress files compressed by Microsoft compress.exe utility
(e.g. Win 3.x installation files)
mscompress, which compress files using LZ77 compression algorithm. Output
files can be decompressed using Microsoft expand.exe or msexpand(1).

To install it on your Unix box, configure the package ("./configure") and
then type "make all test install".

-- mhi