scripts/compression_utils
Matteo Cypriani 8d61d1d685 Add bin/ to link other scripts and global README 2013-04-10 16:32:46 -04:00
..
README Add bin/ to link other scripts and global README 2013-04-10 16:32:46 -04:00
lz.sh Rename a bunch of scripts 2013-04-10 16:32:45 -04:00
xzize.sh Rename a bunch of scripts 2013-04-10 16:32:45 -04:00

README

# lz.sh (lz and uz) #

The lz.sh script emulates and extends commands lz and uz from the
mtools.

It handles: tar, tar.gz, tar.bz2, tar.xz, tar.lzma and tar.Z (and
associated 3-characters extensions: tgz, tbz, tb2, tlz, txz, taz)
through the standards options of GNU Tar.
Note that you need GNU Tar, at least version 1.20 to support LZMA
compressed archives, and version 1.22 for XZ compressed ones.

If the script name is "lz", the archive content is displayed. If the
name is "uz", it is extracted.

To install lz and uz, move put script in a directory in the PATH (for
instance /usr/local/bin) and hard link it to uz:
  cp lz.sh /usr/local/bin/lz
  ln /usr/local/bin/{lz,uz}

Alternatively, you can use directly the symbolic links provided along
with the repository by adding the "bin" directory to your PATH, as
explained in the main README file.


# xzize.sh #

The xzize script compresses an uncompressed file, or recompresses a
compressed file to xz (with maximum compression level).

Known compression formats are GZip (.gz), BZip2 (.bz2), LZMA (.lzma),
and Lempel-Ziv (.Z). Short tar compressed suffixes are also allowed:
.tgz, .tbz, .tb2, .tlz, .taz.

In case of recompression, the original compressed file is keeped. In
case of compression (i.e. when the suffix of the file does not
correspond to a known compression format), the original uncompressed
file is removed.