blob: ff6eb2240909a6be6e40ef3379f8db1e2347483e [file] [log] [blame]
bpatel4bf512b2011-05-11 08:30:46 -07001." Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00002." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3."
4." This code is free software; you can redistribute it and/or modify it
5." under the terms of the GNU General Public License version 2 only, as
6." published by the Free Software Foundation.
7."
8." This code is distributed in the hope that it will be useful, but WITHOUT
9." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11." version 2 for more details (a copy is included in the LICENSE file that
12." accompanied this code).
13."
14." You should have received a copy of the GNU General Public License version
15." 2 along with this work; if not, write to the Free Software Foundation,
16." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17."
ohair2283b9d2010-05-25 15:58:33 -070018." Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
19." or visit www.oracle.com if you need additional information or have any
20." questions.
tbell16c34dd2009-05-04 18:28:26 -070021."
bpatel4bf512b2011-05-11 08:30:46 -070022.TH unpack200 1 "10 May 2011"
duke6e45e102007-12-01 00:00:00 +000023
24.LP
tbell16c34dd2009-05-04 18:28:26 -070025.SH "Name"
duke6e45e102007-12-01 00:00:00 +000026unpack200 \- JAR Unpacking tool
27.LP
28.SH "SYNOPSIS"
29.LP
duke6e45e102007-12-01 00:00:00 +000030.LP
31\f4unpack200\fP\f2 [ \fP\f2options\fP ] \f2input\-file\fP \f2JAR\-file\fP
32.LP
33.LP
34Options may be in any order. The last option on the command line supersedes all previously specified options.
35.LP
36.RS 3
duke6e45e102007-12-01 00:00:00 +000037.TP 3
38input\-file
39Name of the input file, which can be a pack200 gzip file or a pack200 file. The input could also be JAR file produced by pack200(1) with an effort of 0. In this case the contents of the input file will be copied to the output JAR file with the Pack200 marker.
40.TP 3
41JAR\-file
42Name of the output JAR file.
tbell16c34dd2009-05-04 18:28:26 -070043.RE
44
duke6e45e102007-12-01 00:00:00 +000045.LP
duke6e45e102007-12-01 00:00:00 +000046.SH "DESCRIPTION"
47.LP
duke6e45e102007-12-01 00:00:00 +000048.LP
49\f2unpack200\fP is a native implementation that transforms a packed file produced by \f2pack200\fP(1) into a JAR file. Typical usage:
50.LP
duke6e45e102007-12-01 00:00:00 +000051.LP
52\f2% unpack200 myarchive.pack.gz myarchive.jar\fP
53.LP
duke6e45e102007-12-01 00:00:00 +000054.LP
55In this example, the \f2myarchive.jar\fP is produced from \f2myarchive.pack.gz\fP using the default \f2unpack200\fP settings.
56.LP
57.SH "OPTIONS"
58.LP
duke6e45e102007-12-01 00:00:00 +000059.LP
60\f4\-Hvalue \-\-deflate\-hint=\fP\f2value\fP
61.LP
duke6e45e102007-12-01 00:00:00 +000062.LP
63Sets the deflation to be \f2true\fP, \f2false\fP, or \f2keep\fP on all entries within a JAR file. The default mode is \f2keep\fP. If \f2true\fP or \f2false\fP, overrides the default behavior and sets the deflation mode on all entries within the output JAR file.
64.LP
duke6e45e102007-12-01 00:00:00 +000065.LP
66\f4\-r \-\-remove\-pack\-file\fP
67.LP
duke6e45e102007-12-01 00:00:00 +000068.LP
69Removes the input packed file.
70.LP
duke6e45e102007-12-01 00:00:00 +000071.LP
72\f4\-v \-\-verbose\fP
73.LP
duke6e45e102007-12-01 00:00:00 +000074.LP
75Outputs minimal messages. Multiple specification of this option will output more verbose messages.
76.LP
duke6e45e102007-12-01 00:00:00 +000077.LP
78\f4\-q \-\-quiet\fP
79.LP
duke6e45e102007-12-01 00:00:00 +000080.LP
81Specifies quiet operation with no messages.
82.LP
duke6e45e102007-12-01 00:00:00 +000083.LP
84\f4\-lfilename \-\-log\-file=\fP\f2filename\fP
85.LP
duke6e45e102007-12-01 00:00:00 +000086.LP
87Specifies a log file to output messages.
88.LP
duke6e45e102007-12-01 00:00:00 +000089.LP
bpatel4bf512b2011-05-11 08:30:46 -070090\f4\-? \-h \-\-help\fP
91.LP
92.LP
93Prints help information about this command.
94.LP
95.LP
96\f4\-V \-\-version\fP
97.LP
98.LP
99Prints version information about this command.
100.LP
101.LP
102\f4\-J\fP\f2option\fP
103.LP
104.LP
105Passes \f2option\fP to the Java launcher called by \f2unpack200\fP.
106.LP
107.SH "EXIT STATUS"
duke6e45e102007-12-01 00:00:00 +0000108.LP
109.LP
110The following exit values are returned:
111.LP
duke6e45e102007-12-01 00:00:00 +0000112.LP
113\f2\ 0\fP if successful completion;
114.LP
115.LP
116\f2>0\fP if an error occurred.
117.LP
duke6e45e102007-12-01 00:00:00 +0000118.SH "SEE ALSO"
119.LP
120.RS 3
121.TP 2
tbell16c34dd2009-05-04 18:28:26 -0700122o
123pack200(1)
duke6e45e102007-12-01 00:00:00 +0000124.TP 2
tbell16c34dd2009-05-04 18:28:26 -0700125o
126.na
127\f2Java SE Documentation\fP @
128.fi
bpatel4bf512b2011-05-11 08:30:46 -0700129http://download.oracle.com/javase/7/docs/index.html
duke6e45e102007-12-01 00:00:00 +0000130.TP 2
tbell16c34dd2009-05-04 18:28:26 -0700131o
duke6e45e102007-12-01 00:00:00 +0000132.na
133\f2Java Deployment Guide \- Pack200\fP @
134.fi
bpatel4bf512b2011-05-11 08:30:46 -0700135http://download.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/pack200.html
duke6e45e102007-12-01 00:00:00 +0000136.TP 2
tbell16c34dd2009-05-04 18:28:26 -0700137o
138jar(1) \- Java Archive Tool
duke6e45e102007-12-01 00:00:00 +0000139.TP 2
tbell16c34dd2009-05-04 18:28:26 -0700140o
141jarsigner(1) \- JAR Signer tool
142.TP 2
143o
144\f2attributes(5)\fP man page
duke6e45e102007-12-01 00:00:00 +0000145.RE
146
147.LP
148.SH "NOTES"
149.LP
duke6e45e102007-12-01 00:00:00 +0000150.LP
151This command should not be confused with \f2unpack(1)\fP. They are distinctly separate products.
152.LP
153.LP
tbell16c34dd2009-05-04 18:28:26 -0700154The Java SE API Specification provided with the JDK is the superseding authority, in case of discrepancies.
155.LP
duke6e45e102007-12-01 00:00:00 +0000156