aboutsummaryrefslogtreecommitdiff
path: root/fastjar/fastjar.texi
blob: b7c1259f05a852792ddb85a35292325aa417107c (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
\input texinfo @c -*-texinfo-*-
@setfilename fastjar.info
@settitle Guide to GNU jar utilites

@c Note: When reading this manual you'll find lots of strange
@c circumlocutions like ``compiler for the Java language''.
@c This is necessary due to Sun's restrictions on the use of
@c the word ``Java'.

@c When this manual is copyrighted.
@set copyrights-fastjar 2002

@include gcc-common.texi

@c Versions
@set which-gcj GCC-@value{version-GCC}

@ifinfo
@format
@dircategory Programming
@direntry
* fastjar: (fastjar).       GNU jar utilities
@end direntry

@dircategory Individual utilities
@direntry
* jar: (fastjar)Invoking jar.
                            An archive tool for Java archives
* grepjar: (fastjar)Invoking grepjar.
                            Search files in a jar file for a pattern
@end direntry
@end format

@c man begin COPYRIGHT
Copyright (C) @value{copyrights-fastjar} Free Software Foundation, Inc.

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``GNU General Public License'', the Front-Cover
texts being (a) (see below), and with the Back-Cover Texts being (b)
(see below).  A copy of the license is included in the
@c man end
section entitled
``GNU Free Documentation License''.
@ignore
@c man begin COPYRIGHT
man page gfdl(7).
@c man end
@end ignore

@c man begin COPYRIGHT

(a) The FSF's Front-Cover Text is:

     A GNU Manual

(b) The FSF's Back-Cover Text is:

     You have freedom to copy and modify this GNU Manual, like GNU
     software.  Copies published by the Free Software Foundation raise
     funds for GNU development.
@c man end
@end ifinfo

@titlepage
@title GNU jar utilites
@author Brian Burns

@page
@vskip 0pt plus 1filll
Copyright @copyright{} @value{copyrights-gcj} Free Software Foundation, Inc.
@sp 2
For the @value{which-gcj} Version*
@sp 1
Published by the Free Software Foundation @*
59 Temple Place - Suite 330@*
Boston, MA 02111-1307, USA@*
@sp 1
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``GNU General Public License'', the Front-Cover
texts being (a) (see below), and with the Back-Cover Texts being (b)
(see below).  A copy of the license is included in the section entitled
``GNU Free Documentation License''.

(a) The FSF's Front-Cover Text is:

     A GNU Manual

(b) The FSF's Back-Cover Text is:

     You have freedom to copy and modify this GNU Manual, like GNU
     software.  Copies published by the Free Software Foundation raise
     funds for GNU development.
@end titlepage
@contents
@page


@node Top
@top Introduction

This manual describes how to use @command{jar} and @command{grepjar}.

@menu
* Invoking jar::	Options supported by @command{jar}
* Invoking grepjar::    Options supported by @command{grepjar}
* Copying::		The GNU General Public License
* GNU Free Documentation License::
			How you can share and copy this manual
@end menu

@node Invoking jar
@chapter Invoking jar

@c man title jar archive tool for Java archives

@c man begin DESCRIPTION jar

@code{fastjar} is an implementation of Sun's jar utility that comes with
the JDK, written entirely in C, and runs in a fraction of the time while
being feature compatible.

If any file is a directory then it is processed recursively.  The
manifest file name and the archive file name needs to be specified in
the same order the @option{-m} and @option{-f} flags are specified.

@c man end

@ignore
@c man begin SYNOPSIS jar
jar @option{-ctxu} [@option{OPTIONS}] [@var{jar-file}] [@var{manifest-file}] [@option{-C} @var{dir}] @var{files}@dots{}
@c man end
@c man begin SEEALSO jar
gcj(1), gij(1), grepjar(1)
and the Info entry for @file{gcj}.
@c man end
@end ignore

@c man begin OPTIONS jar

Exactly one of the following actions must be specified:

@table @gcctabopt

@item -c
Create new archive.

@item -t
List table of contents for archive.

@item -x
Extract named (or all) files from archive.

@item -u
Update existing archive. This option is disabled due to bugs (currently
fails with exit status 1 and does nothing).

@end table

The following parameters are optional:

@table @gcctabopt

@item -@@
Read the names of the files to add to the archive from stdin.  This
option is supported only in combination with @option{-c} or @option{-u}.
Non standard option added in the GCC version.

@item -C @var{directory}
Change to the @var{directory} and include the following file.

@item -E
Prevent fastjar from reading the content of a directory when specifying
one (and instead relying on the provided list of files to populate the
archive with regard to the directory entry). Non standard option added
in the GCC version.

@item -M
Do not create a manifest file for the entries.

@item -0
Store only; use no ZIP compression.

@item -V
@itemx --version
Display version information.

@item -f @var{archive}
Specify archive file name.

@item -m @var{manifest}
Include manifest information from specified @var{manifest} file.

@item -v
Generate verbose output on standard output.

@end table

All remaining options are considered to be names of files.

@c man end

@node Invoking grepjar
@chapter Invoking grepjar

@c man title grepjar search files in a jar file for a pattern

@c man begin DESCRIPTION grepjar

The @code{grepjar} program can be used to search files in a jar file for
a pattern.

@c man end

@ignore
@c man begin SYNOPSIS grepjar
grepjar [@option{-bcinsw}] @option{-e} @var{PATTERN} | @var{PATTERN} @var{files}@dots{}
@c man end
@c man begin SEEALSO grepjar
jar(1), gcj(1), gij(1), gfdl(7) and the Info entry for @file{gcj}.
@c man end
@end ignore

@c man begin OPTIONS grepjar

@table @gcctabopt
@item -b
Print byte offset of match.

@item -c
Print number of matches.

@item -i
Compare case-insensitively.

@item -n
Print line number of each match.

@item -s
Suppress error messages.

@item -w
Force @var{PATTERN} to match only whole words.

@item -e @var{PATTERN}
Use @var{PATTERN} as regular expression.

@item --help
Print help, then exit.

@item -V
@itemx --version
Print version number, then exit.
@end table

@c man end

@include gpl.texi

@include fdl.texi

@bye