mirror of
https://github.com/vasi/pixz
synced 2024-11-18 15:26:46 +00:00
Document new flag
This commit is contained in:
parent
1799c4e8f1
commit
2403ca1bcf
1
README
1
README
@ -36,6 +36,7 @@ Other flags:
|
|||||||
|
|
||||||
$ pixz -1 foo.tar # Faster, worse compression
|
$ pixz -1 foo.tar # Faster, worse compression
|
||||||
$ pixz -9 foo.tar # Better, slower compression
|
$ pixz -9 foo.tar # Better, slower compression
|
||||||
|
$ pixz -p 2 foo.tar # Cap the number of threads at 2
|
||||||
|
|
||||||
$ pixz -t foo.tar # Compress but don't treat it as a tarball (don't index it)
|
$ pixz -t foo.tar # Compress but don't treat it as a tarball (don't index it)
|
||||||
$ pixz -d -t foo.tpxz # Decompress foo, don't check that contents match index
|
$ pixz -d -t foo.tpxz # Decompress foo, don't check that contents match index
|
||||||
|
1
pixz.c
1
pixz.c
@ -38,6 +38,7 @@ static void usage(const char *msg) {
|
|||||||
"\n"
|
"\n"
|
||||||
"Other flags:\n"
|
"Other flags:\n"
|
||||||
" -0, -1 ... -9 Set compression level, from fastest to strongest\n"
|
" -0, -1 ... -9 Set compression level, from fastest to strongest\n"
|
||||||
|
" -p NUM Use a maximum of NUM CPU-intensive threads\n"
|
||||||
" -t Don't assume input is in tar format\n"
|
" -t Don't assume input is in tar format\n"
|
||||||
" -h Print this help\n"
|
" -h Print this help\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user