diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-26 18:13:06 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-26 18:13:06 +0000 |
commit | 3d8da5c85f9bb90eb80ac3fa22edf45b448140fb (patch) | |
tree | ea7e7459cb562b1bec12164edbcf295647c0202b /Build/source/extra/xz-4.999.9beta-124-gb637/doc/man/txt/lzmainfo.txt | |
parent | 102ace285218431079cbea4914f3faaad0c7383e (diff) |
new xz release
git-svn-id: svn://tug.org/texlive/trunk@18518 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/extra/xz-4.999.9beta-124-gb637/doc/man/txt/lzmainfo.txt')
-rw-r--r-- | Build/source/extra/xz-4.999.9beta-124-gb637/doc/man/txt/lzmainfo.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Build/source/extra/xz-4.999.9beta-124-gb637/doc/man/txt/lzmainfo.txt b/Build/source/extra/xz-4.999.9beta-124-gb637/doc/man/txt/lzmainfo.txt new file mode 100644 index 00000000000..28b1f962f58 --- /dev/null +++ b/Build/source/extra/xz-4.999.9beta-124-gb637/doc/man/txt/lzmainfo.txt @@ -0,0 +1,40 @@ +LZMAINFO(1) XZ Utils LZMAINFO(1) + + + +NAME + lzmainfo - show infomation stored in the .lzma file header + +SYNOPSIS + lzmainfo [--help] [--version] [file]... + +DESCRIPTION + lzmainfo shows information stored in the .lzma file header. It reads + the first 13 bytes from the specified file, decodes the header, and + prints it to standard output in human readable format. If no files are + given or file is -, standard input is read. + + Usually the most interesting information is the uncompressed size and + the dictionary size. Uncompressed size can be shown only if the file is + in the non-streamed .lzma format variant. The amount of memory required + to decompress the file is a few dozen kilobytes plus the dictionary + size. + + lzmainfo is included in XZ Utils primarily for backward compatibility + with LZMA Utils. + +EXIT STATUS + 0 All is good. + + 1 An error occurred. + +BUGS + lzmainfo uses MB while the correct suffix would be MiB (2^20 bytes). + This is to keep the output compatible with LZMA Utils. + +SEE ALSO + xz(1) + + + +Tukaani 2009-08-13 LZMAINFO(1) |