1ZLIB_DECOMPRESS(1) MySQL Database System ZLIB_DECOMPRESS(1)
2
3
4
6 zlib_decompress - decompress mysqlpump ZLIB-compressed output
7
9 zlib_decompress input_file output_file
10
12 The zlib_decompress utility decompresses mysqlpump output that was
13 created using ZLIB compression.
14
15 Note
16 If MySQL was configured with the -DWITH_ZLIB=system option,
17 zlib_decompress is not built. In this case, the system openssl zlib
18 command can be used instead.
19
20 Invoke zlib_decompress like this:
21
22 shell> zlib_decompress input_file output_file
23
24 Example:
25
26 shell> mysqlpump --compress-output=ZLIB > dump.zlib
27 shell> zlib_decompress dump.zlib dump.txt
28
29 To see a help message, invoke zlib_decompress with no arguments.
30
31 To decompress mysqlpump LZ4-compressed output, use lz4_decompress. See
32 lz4_decompress(1).
33
35 Copyright © 1997, 2020, Oracle and/or its affiliates.
36
37 This documentation is free software; you can redistribute it and/or
38 modify it only under the terms of the GNU General Public License as
39 published by the Free Software Foundation; version 2 of the License.
40
41 This documentation is distributed in the hope that it will be useful,
42 but WITHOUT ANY WARRANTY; without even the implied warranty of
43 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
44 General Public License for more details.
45
46 You should have received a copy of the GNU General Public License along
47 with the program; if not, write to the Free Software Foundation, Inc.,
48 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see
49 http://www.gnu.org/licenses/.
50
51
53 For more information, please refer to the MySQL Reference Manual, which
54 may already be installed locally and which is also available online at
55 http://dev.mysql.com/doc/.
56
58 Oracle Corporation (http://dev.mysql.com/).
59
60
61
62MySQL 8.0 11/26/2020 ZLIB_DECOMPRESS(1)