lzma_options_lzma opt_lzma;
if (lzma_lzma_preset(&opt_lzma, 1))
return 1;
-
+
lzma_filter filters[] = {
{
.id = LZMA_FILTER_LZMA2,
ret = fread(buf, BUFSIZE, 1, stdin);
if (ret != 1)
break;
-
+
/* Scan for signature. */
for (i = 0; i<BUFSIZE-23; i++) {
if (find_lzma_header(buf+i) && numlzma-- <= 0) {
- fwrite(buf+i, (BUFSIZE-i), 1, stdout);
+ fwrite(buf+i, (BUFSIZE-i), 1, stdout);
for (;;) {
int ch;
ch = getchar();
exit(0);
putchar(ch);
}
-
}
}
blocks++;
printf("0x%08" PRIX32, crc32_table[s][b]);
if (b != 255)
- printf(", ");
+ printf(",%s", (b+1) % 4 == 0 ? "" : " ");
}
if (s == 7)
crc64_table[s][b]);
if (b != 255)
- printf(", ");
+ printf(",%s", (b+1) % 2 == 0 ? "" : " ");
}
if (s == 3)
.RI [ diff_options "] " file1 " [" file2 ]
.SH DESCRIPTION
.B lzcmp
-and
+and
.B zdiff
are used to invoke the
.BR cmp (1)
.B cmp
or
.BR diff "."
-The exit status from
+The exit status from
.B cmp
or
.B diff
.BR PAGER .
.TP
.BR e " or " q
-When the prompt --More--(Next file:
+When the prompt --More--(Next file:
.IR file )
is printed, this command causes lzmore to exit.
.TP
.B s
-When the prompt --More--(Next file:
+When the prompt --More--(Next file:
.IR file )
is printed, this command causes zmore to skip the next file and continue.
.PP
content of a file, refer to manual of the pager you use, usually
.BR more (1)
or
-.BR less (1).
+.BR less (1).
.SH AUTHORS
This manual page was ripped from
.BR zmore (1)
# --subblock=size=8,rle=4 \
# --subblock=size=8,rle=8 \
# --subblock=size=4096,rle=12 \
-#
+#
for ARGS in \
--delta=dist=1 \
--delta=dist=4 \
--sparc
do
test_xz $ARGS --lzma2=dict=64KiB,nice=32,mode=fast
-
+
# Disabled until Subblock format is stable.
# test_xz --subblock $ARGS --lzma2=dict=64KiB,nice=32,mode=fast
done