NAME

lzf - Compress/decompress using LZF algorithm

VERSION

version 0.01

SYNOPSIS

Usage:

% lzf [options] <file> ...

DESCRIPTION

This is a simple command-line front-end for Perl modules Compress::LZF. LZF is one of the algorithms where there are currently pure-Perl implementation of the decompressor on CPAN. So it is useful in some cases.

OPTIONS

  • --decompress, --uncompress, -d

    Decompress instead of compress.

  • --pure-perl, --pp

    Use pure-Perl implementation. Currently only for decompression (Compress::LZF_PP(.

  • --force, -f

    Compress even though file already has .lzf extension.

    Overwrite when target file exists.

EXIT CODES

0 on success.

255 on I/O error.

99 on command-line options error.

CAVEATS/BUGS/TODO

Currently data is slurped into memory, so the data to be compressed must fit into memory.

SEE ALSO

Compress::LZF

Compress::LZF_PP

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/App-lzf.

SOURCE

Source repository is at https://github.com/sharyanto/perl-App-lzf.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-lzf

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.