-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshrinkmapper.1
47 lines (47 loc) · 1.27 KB
/
shrinkmapper.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.\" (C) Copyright 2016 Darrick J. Wong <[email protected]>,
.TH SHRINKMAPPER 1 "December 28, 2016"
.SH NAME
shrinkmapper \- Recompress filemapper databases.
.SH SYNOPSIS
.B shrinkmapper
.I infile
.I outfile
.BI "[" incompressor "]"
.BI "[" outcompressor "]"
.SH DESCRIPTION
This manual page documents briefly the
.B shrinkmapper
command.
.PP
\fBshrinkmapper\fP compresses a filemapper database to use less disk
space.
It can operate on any SQLite3 database, so long as one uses the compdb
SQLite VFS shim to provide compressed file support.
.SH OPTIONS
These programs follow the usual GNU command line syntax, with long
options starting with two dashes (`-').
A summary of options is included below.
For a complete description, see the Info files.
.TP
.I infile
Read data from this database.
.TP
.I outfile
Write database to this file.
.TP
.I incompressor
If specified, use this compression algorithm to read in pages from the database.
An empty string or no string selects the default (gzip).
.TP
.I outcompressor
If specified, use this compression algorithm to write pages to the database.
An empty string or no string selects the default (gzip).
.TP
.B \-l
Print the names of all supported compression algorithms.
.TP
.B \-h, \-\-help
Show summary of options.
.SH SEE ALSO
.BR filemapper (1).
.br