1 | 21
|
---|
2 | ;
|
---|
3 | ;The first line is the number of lines/definition in this archiver.bb2 file...
|
---|
4 | ;It is very important; do not change. It allows modifications to the
|
---|
5 | ;file format to be transparent to older programs.
|
---|
6 |
|
---|
7 | ;ARCHIVER.BB2, archiver control file for FM/2, AV, XBBS-OS/2 & XGROUP
|
---|
8 | ;KEEP A COPY OF THIS ORIGINAL FILE FOR INFORMATION LATER!
|
---|
9 |
|
---|
10 | ; $Id: archiver.tmp 1689 2013-07-30 23:22:48Z gyoung $
|
---|
11 |
|
---|
12 | ;Format for this archiver.bb2 file (each entry has 21 lines):
|
---|
13 | ;
|
---|
14 | ; 1st line: archiver id (i.e. ARC, LHARC, PKZIP, etc.) for human consumption
|
---|
15 | ; 2nd line: normal extension for archives without period (i.e ZIP, ARC, LZH)
|
---|
16 | ; 3rd line: offset into file to signature (leave blank if no signature)
|
---|
17 | ; 4th line: list command
|
---|
18 | ; 5th line: extract command
|
---|
19 | ; 6th line: extract with directories command
|
---|
20 | ; 7th line: test archive command
|
---|
21 | ; 8th line: add/create command
|
---|
22 | ; 9th line: add/create with paths command
|
---|
23 | ;10th line: add/create & recurse command
|
---|
24 | ;11th line: move command
|
---|
25 | ;12th line: move with paths command
|
---|
26 | ;13th line: delete command
|
---|
27 | ;14th line: signature (case sensitive, leading spaces count!)
|
---|
28 | ;15th line: startlist string
|
---|
29 | ;16th line: endlist string
|
---|
30 | ;17th line: old size position (0-based, -1 = not available)
|
---|
31 | ;18th line: new size position (0-based, -1 = not available)
|
---|
32 | ;19th line: file date position (0-based, -1 = not available) [,type of date (0 for none)]
|
---|
33 | ;20th line: number of elements in dates (for "03 June 92" would be 3)
|
---|
34 | ;21st line: file name position (absolutely required, of course; -1 = last pos)[,name is last (1 = TRUE, n/a w/ -1 pos)[name is next line (1 = TRUE)[,name is first line, then rest of data (1 = TRUE)]]]
|
---|
35 | ; see ZOO entry for example of -1 in file name position
|
---|
36 | ; see LH entry for example of name is last
|
---|
37 | ; see RAR 2.00 entry for example of name is first
|
---|
38 | ; check listings generated by these programs for clarification
|
---|
39 |
|
---|
40 | ;ARCHIVER AUTHORS: MAKE A STANDARD!
|
---|
41 |
|
---|
42 | ;A semicolon marks a comment. They may appear at any point *except*
|
---|
43 | ;within the 21 lines of an archiver definition entry. Comments are ignored.
|
---|
44 | ;Archiver definition entries that contain numeric values may have trailing comments.
|
---|
45 | ;Archiver definition lines that contain strings do not support trailing comments.
|
---|
46 |
|
---|
47 | ;Blank lines are ignored except within a 21 line archiver definition entry.
|
---|
48 | ;A blank line with a definition entry will be treats as either an empty string
|
---|
49 | ;or the number 0, depending on what content is expected for the definition line.
|
---|
50 |
|
---|
51 | ;Note that all archiver command strings should include the archiver's parameter(s)
|
---|
52 | ;which prevent it from prompting for input! Also note that archive types are checked
|
---|
53 | ;in order of their listing in this file. Finally, this file is set up for
|
---|
54 | ;the archivers I had lying around. If yours are different versions, you may
|
---|
55 | ;have to modify this file. All archivers are OS/2 (or FAPI) versions.
|
---|
56 | ;DOS archivers may work with FM/2, but it'll be up to you to set them up.
|
---|
57 |
|
---|
58 | ;Supported date input types:
|
---|
59 | ;--------------------
|
---|
60 | ; No date in data 0
|
---|
61 | ;02-31-98 23:55:32 mm-dd-yy hh:mm:ss 1
|
---|
62 | ;31 Feb 98 23:55:32 dd-Mmm- yy hh:mm:ss 2
|
---|
63 | ;31 Feb 98 11:55p dd Mmm yy hh:mmA 3
|
---|
64 | ;98-02-31 23:55:32 yy-mm-dd hh:mm:ss 4
|
---|
65 | ;31-02-98 23:55 dd-mm-yy hh:mm 5
|
---|
66 | ;Aug 21 23:55 2011 mm-dd-yyyy hh:mm:ss 6 Fixes tar.gz date/time formatting when using tar 1.15+
|
---|
67 |
|
---|
68 | ; Dash (-) and slash (/) separators are both supported.
|
---|
69 | ; Both 2 digit and 4 digit years are supported.
|
---|
70 | ; 2 digit years slide about 1980.
|
---|
71 |
|
---|
72 | ;The positions specified in an archiver defintion are word numbers, where a
|
---|
73 | ;word is something separated by whitespace. Counting starts at zero (0).
|
---|
74 | ;Minus one (-1) usually indicates the item does not exist. The exception is
|
---|
75 | ;the file name position (line 21), where -1 indicates that the filename is
|
---|
76 | ;the last entry on the listing line. This allow files names with spaces to
|
---|
77 | ;be supported.
|
---|
78 |
|
---|
79 | ;How archiver selection works (for the curious):
|
---|
80 |
|
---|
81 | ;The archive selector scans the known archivers in the order in which they
|
---|
82 | ;are defined. The selector first tries a signature match, unless this is
|
---|
83 | ;suppressed in the settings. If there is no signature defined or if
|
---|
84 | ;the signature match is suppressed, the selector checks to see if the file
|
---|
85 | ;extension matches. The matching entry defines the commands used for the
|
---|
86 | ;various archiving operations and supplies parameters that enable the archiver
|
---|
87 | ;outputs to be parsed.
|
---|
88 |
|
---|
89 | ;Warning: I'm told there's a bug in some versions of 4OS2 that can cause
|
---|
90 | ;a call to an archiver to fail if the archiver has an extension (i.e.
|
---|
91 | ;UNZIP works, UNZIP.EXE doesn't). If things fail for no apparent reason
|
---|
92 | ;and you're using 4OS2 you might keep it in mind.
|
---|
93 | ;
|
---|
94 | ;The FM/2 code for accessing and using this information is in avl.c, avl.c and
|
---|
95 | ;arccnrs.c and is freely available for use in in your own projects under
|
---|
96 | ;the terms of then GNU GPL2 license.
|
---|
97 |
|
---|
98 | ;------------------- Current Archivers -------------------------
|
---|
99 | ;
|
---|
100 | ; Entry #1 - InfoZip Zip/UnZip 2.2/5.4, sent to me by V. Lee Conyers.
|
---|
101 | ;
|
---|
102 | Zip/UnZip 2.2/5.4
|
---|
103 | ZIP
|
---|
104 | 0
|
---|
105 | UNZIP.EXE -lv
|
---|
106 | UNZIP.EXE -jo
|
---|
107 | UNZIP.EXE -o
|
---|
108 | UNZIP.EXE -t
|
---|
109 | ZIP.EXE -j9g
|
---|
110 | ZIP.EXE -9g
|
---|
111 | ZIP.EXE -r9g
|
---|
112 | ZIP.EXE -mj9g
|
---|
113 | ZIP.EXE -m9g
|
---|
114 | ZIP.EXE -d
|
---|
115 | PK\x03\x04
|
---|
116 | -------- ------ ------- ----- ---- ---- ------ ----
|
---|
117 | -------- ------- --- -------
|
---|
118 | 0
|
---|
119 | 2
|
---|
120 | 4,1
|
---|
121 | 2
|
---|
122 | 7,1,0,0
|
---|
123 | ;
|
---|
124 | ;
|
---|
125 | ; Entry #2 - InfoZip Zip/UnZip 2.2/6.0
|
---|
126 | ;
|
---|
127 | Zip/UnZip 2.2/6.0
|
---|
128 | ZIP
|
---|
129 | 0
|
---|
130 | UNZIP.EXE -lv
|
---|
131 | UNZIP.EXE -jo
|
---|
132 | UNZIP.EXE -o
|
---|
133 | UNZIP.EXE -t
|
---|
134 | ZIP.EXE -j9g
|
---|
135 | ZIP.EXE -9g
|
---|
136 | ZIP.EXE -r9g
|
---|
137 | ZIP.EXE -mj9g
|
---|
138 | ZIP.EXE -m9g
|
---|
139 | ZIP.EXE -d
|
---|
140 | PK\x03\x04
|
---|
141 | -------- ------ ------- ---- ---------- ----- -------- ----
|
---|
142 | -------- ------- --- -------
|
---|
143 | 0
|
---|
144 | 2
|
---|
145 | 4,1
|
---|
146 | 2
|
---|
147 | 7,1,0,0
|
---|
148 | ;
|
---|
149 | ; Entry #3 (7z)
|
---|
150 | ;
|
---|
151 | 7z
|
---|
152 | 7z
|
---|
153 | 0
|
---|
154 | 7za.exe l
|
---|
155 | 7za.exe e
|
---|
156 | 7za.exe x
|
---|
157 | 7za.exe t
|
---|
158 | 7za.exe a
|
---|
159 |
|
---|
160 |
|
---|
161 |
|
---|
162 |
|
---|
163 | 7za.exe d
|
---|
164 | 7z
|
---|
165 | ------------------- ----- ------------ ------------ ------------------------
|
---|
166 | ------------------- ----- ------------ ------------ ------------------------
|
---|
167 | 3
|
---|
168 | 4
|
---|
169 | 0,4
|
---|
170 | 1
|
---|
171 | 5,1,0,0
|
---|
172 | ;
|
---|
173 | ;
|
---|
174 | ; Entry #4 - PKZIP 2.50 named PKZip (true OS/2 executable).
|
---|
175 | ;
|
---|
176 | PKZip 2.50
|
---|
177 | ZIP
|
---|
178 | 0
|
---|
179 | PKZIP.EXE /locale=canada /nofix
|
---|
180 | PKZIP.EXE /overwrite /extract /nofix
|
---|
181 | PKZIP.EXE /overwrite /extract /directories /nofix
|
---|
182 | PKZIP.EXE /test
|
---|
183 | PKZIP.EXE /add /nofix
|
---|
184 | PKZIP.EXE /add /path /nofix
|
---|
185 | PKZIP.EXE /add /path /recurse /nofix
|
---|
186 | PKZIP.EXE /add /move /nofix
|
---|
187 | PKZIP.EXE /add /move /path /nofix
|
---|
188 | PKZIP.EXE /delete /nofix
|
---|
189 | PK\x03\x04\x14
|
---|
190 | ------ ------ ----- ----- ---- ---- -------- ---- ----
|
---|
191 | ------ ------ ----- ----
|
---|
192 | 0
|
---|
193 | 2
|
---|
194 | 4,0
|
---|
195 | 2
|
---|
196 | 8,1,0,0
|
---|
197 | ;
|
---|
198 | ; Entry #5 - InfoZip unzipsfx self-extractors.
|
---|
199 | ;
|
---|
200 | unzipsfx
|
---|
201 |
|
---|
202 | 217
|
---|
203 | UNZIP.EXE -vUo
|
---|
204 | UNZIP.EXE -jo
|
---|
205 | UNZIP.EXE -o
|
---|
206 | UNZIP.EXE -to
|
---|
207 |
|
---|
208 |
|
---|
209 |
|
---|
210 |
|
---|
211 |
|
---|
212 | ZIP.EXE -d
|
---|
213 | unzipsfx
|
---|
214 | ------ ------ ---- ----- ---- ---- ------ ----
|
---|
215 | ------ ------ --- -------
|
---|
216 | 0
|
---|
217 | 2
|
---|
218 | 4,1
|
---|
219 | 2
|
---|
220 | 7,1,0,0
|
---|
221 | ;
|
---|
222 | ;
|
---|
223 | ; Entry #6 - PKWare PKZIP self-extractors type 1.
|
---|
224 | ;
|
---|
225 | PK(Un)Zip SE #1
|
---|
226 |
|
---|
227 | 2934
|
---|
228 | PKZIP.EXE /locale=canada /nofix
|
---|
229 | PKZIP.EXE /overwrite /extract /nofix
|
---|
230 | PKZIP.EXE /overwrite /extract /directories /nofix
|
---|
231 | PKZIP.EXE /test
|
---|
232 | PKZIP.EXE /add /nofix
|
---|
233 | PKZIP.EXE /add /path /nofix
|
---|
234 | PKZIP.EXE /add /path /recurse /nofix
|
---|
235 | PKZIP.EXE /add /move /nofix
|
---|
236 | PKZIP.EXE /add /move /path /nofix
|
---|
237 | PKZIP.EXE /delete /nofix
|
---|
238 | PK\x03\x04
|
---|
239 | ------ ------ ----- ----- ---- ---- ------ ---- ----
|
---|
240 | ------ ------ --- -------
|
---|
241 | 0
|
---|
242 | 2
|
---|
243 | 4,0
|
---|
244 | 2
|
---|
245 | 8,0,0,0
|
---|
246 | ;
|
---|
247 | ; Entry #7 - is for PKWare PKZIP self-extractors type 2.
|
---|
248 | ;
|
---|
249 | PK(Un)Zip SE #2
|
---|
250 |
|
---|
251 | 12784
|
---|
252 | PKZIP.EXE /locale=canada /nofix
|
---|
253 | PKZIP.EXE /overwrite /extract /nofix
|
---|
254 | PKZIP.EXE /overwrite /extract /directories /nofix
|
---|
255 | PKZIP.EXE /test
|
---|
256 | PKZIP.EXE /add /nofix
|
---|
257 | PKZIP.EXE /add /path /nofix
|
---|
258 | PKZIP.EXE /add /path /recurse /nofix
|
---|
259 | PKZIP.EXE /add /move /nofix
|
---|
260 | PKZIP.EXE /add /move /path /nofix
|
---|
261 | PKZIP.EXE /delete /nofix
|
---|
262 | PK\x03\x04
|
---|
263 | ------ ------ ----- ----- ---- ---- ------ ---- ----
|
---|
264 | ------ ------ --- -------
|
---|
265 | 0
|
---|
266 | 2
|
---|
267 | 4,0
|
---|
268 | 2
|
---|
269 | 8,0,0,0
|
---|
270 | ;
|
---|
271 | ;
|
---|
272 | ; Entry #8 - PKWare PKZIP self-extractors type 3.
|
---|
273 | ;
|
---|
274 | PK(Un)Zip SE #2
|
---|
275 |
|
---|
276 | 30948
|
---|
277 | PKZIP.EXE /locale=canada /nofix
|
---|
278 | PKZIP.EXE /overwrite /extract /nofix
|
---|
279 | PKZIP.EXE /overwrite /extract /directories /nofix
|
---|
280 | PKZIP.EXE /test
|
---|
281 | PKZIP.EXE /add /nofix
|
---|
282 | PKZIP.EXE /add /path /nofix
|
---|
283 | PKZIP.EXE /add /path /recurse /nofix
|
---|
284 | PKZIP.EXE /add /move /nofix
|
---|
285 | PKZIP.EXE /add /move /path /nofix
|
---|
286 | PKZIP.EXE /delete /nofix
|
---|
287 | PK\x03\x04
|
---|
288 | ------ ------ ----- ----- ---- ---- ------ ---- ----
|
---|
289 | ------ ------ --- -------
|
---|
290 | 0
|
---|
291 | 2
|
---|
292 | 4,0
|
---|
293 | 2
|
---|
294 | 8,0,0,0
|
---|
295 | ;
|
---|
296 | ;
|
---|
297 | ; Entry #9 - TAR 1.15.1 from Gregg Young
|
---|
298 | ;
|
---|
299 | TAR 1.15.1 (or higher)
|
---|
300 | TAR
|
---|
301 | 257
|
---|
302 | Tar.exe -tvf
|
---|
303 | Tar.exe --wildcards -xpf
|
---|
304 | Tar.exe --wildcards -xpf
|
---|
305 |
|
---|
306 |
|
---|
307 | Tar.exe --no-recursion -rpf
|
---|
308 | Tar.exe -rpf
|
---|
309 |
|
---|
310 | Tar.exe --remove-files -rpf
|
---|
311 | Tar.exe --delete -f
|
---|
312 | ustar
|
---|
313 | None
|
---|
314 | None
|
---|
315 | 2
|
---|
316 | -1
|
---|
317 | 3,0
|
---|
318 | 2
|
---|
319 | 5,1,0,0
|
---|
320 | ;
|
---|
321 | ; Entry #10 - TAR 1.1.0.
|
---|
322 | ;
|
---|
323 | TAR 1.10
|
---|
324 | TAR
|
---|
325 | 257
|
---|
326 | tar110.exe -tvf
|
---|
327 | Tar110.exe -xpf
|
---|
328 | Tar110.exe -xpf
|
---|
329 |
|
---|
330 | Tar110.exe -rpyf
|
---|
331 | Tar110.exe -rpf
|
---|
332 | Tar110.exe --help
|
---|
333 |
|
---|
334 |
|
---|
335 | Tar110.exe --delete -f
|
---|
336 | ustar
|
---|
337 | None
|
---|
338 | None
|
---|
339 | 2
|
---|
340 | -1
|
---|
341 | 3,2
|
---|
342 | 4
|
---|
343 | 9,1,0,0
|
---|
344 | ;
|
---|
345 | ;
|
---|
346 | ; Entry #11 (tar.gz)
|
---|
347 | ;
|
---|
348 | TAR.GZ (Req. TAR 1.15+ & GZIP)
|
---|
349 | tar.gz
|
---|
350 | 0
|
---|
351 | tar.exe -tzvf
|
---|
352 | tar.exe -xzpvf
|
---|
353 | tar.exe -xzpvf
|
---|
354 |
|
---|
355 | tar.exe -rzpf
|
---|
356 | tar.exe -rpf
|
---|
357 |
|
---|
358 |
|
---|
359 |
|
---|
360 | tar.exe -z --delete -f
|
---|
361 | \x1f\x8b
|
---|
362 | None
|
---|
363 | None
|
---|
364 | 2
|
---|
365 | -1
|
---|
366 | 3,6
|
---|
367 | 4
|
---|
368 | 7,1,0,0
|
---|
369 | ;
|
---|
370 | ; Entry #12 (tar.bz2)
|
---|
371 | ;
|
---|
372 | TAR.BZ2 (Req. TAR 1.15+ & BZIP2)
|
---|
373 | tar.bz2
|
---|
374 | 0
|
---|
375 | tar.exe -tjvf
|
---|
376 | tar.exe -xjpvf
|
---|
377 | tar.exe -xjpvf
|
---|
378 |
|
---|
379 | tar.exe -crjpf
|
---|
380 | tar.exe -rjpf
|
---|
381 |
|
---|
382 |
|
---|
383 |
|
---|
384 | tar.exe -j --delete -f
|
---|
385 | BZh
|
---|
386 | None
|
---|
387 | None
|
---|
388 | 2
|
---|
389 | -1
|
---|
390 | 3,0
|
---|
391 | 2
|
---|
392 | 5,1,0,0
|
---|
393 | ;
|
---|
394 | ; Entry #13 - GZIP (GZ).
|
---|
395 | ;
|
---|
396 | GZIP (GZ) (req. GZIP & TAR 1.15+)
|
---|
397 | GZ
|
---|
398 | 0
|
---|
399 | gzip.exe -lv
|
---|
400 | gzipe.cmd
|
---|
401 |
|
---|
402 | gzip.exe -t
|
---|
403 | gzip.exe
|
---|
404 | gzip.exe
|
---|
405 | gzip.exe -r
|
---|
406 | gzip.exe
|
---|
407 | gzip.exe
|
---|
408 |
|
---|
409 | \x1f\x8b
|
---|
410 | None
|
---|
411 | None
|
---|
412 | 2
|
---|
413 | -1
|
---|
414 | 3,4
|
---|
415 | 2
|
---|
416 | 5,1,0,0
|
---|
417 | ;
|
---|
418 | ; Entry #14 - GZIP (Z).
|
---|
419 | ;
|
---|
420 | GZIP (Z)
|
---|
421 | Z
|
---|
422 | 0
|
---|
423 | gzip.exe -lv
|
---|
424 | gzipe.cmd
|
---|
425 |
|
---|
426 | gzip.exe -t
|
---|
427 | gzip.exe -9 -s .z
|
---|
428 | gzip.exe -9 -s .z
|
---|
429 | gzip.exe -r
|
---|
430 |
|
---|
431 |
|
---|
432 |
|
---|
433 | \x1f\x8b
|
---|
434 | method crc date time compressed uncompr. ratio uncompressed_name
|
---|
435 | None
|
---|
436 | 6
|
---|
437 | 5
|
---|
438 | 2,0
|
---|
439 | 3
|
---|
440 | 8,0,0,0
|
---|
441 | ;
|
---|
442 | ; Entry #15 - Unarj 2.30 demo version.
|
---|
443 | ; Don't use Unarj 2.41; it's broken.
|
---|
444 | ;
|
---|
445 | (Un)Arj 2.30 demo
|
---|
446 |
|
---|
447 | 0
|
---|
448 | UNARJ.EXE l
|
---|
449 | UNARJ.EXE e
|
---|
450 | UNARJ.EXE x
|
---|
451 | UNARJ.EXE t
|
---|
452 |
|
---|
453 |
|
---|
454 |
|
---|
455 |
|
---|
456 |
|
---|
457 |
|
---|
458 | `\xea
|
---|
459 | ------------ ---------- ---------- ----- ----------------- -------- -----------
|
---|
460 | ------------ ---------- ---------- ----- -----------------
|
---|
461 | 1
|
---|
462 | 2
|
---|
463 | 4,0
|
---|
464 | 1
|
---|
465 | 0,0,0,0
|
---|
466 | ;
|
---|
467 | ; Entry #16 - Arj 2.00 (DOS).
|
---|
468 | ; Note that other programs that use this control file may not be able to
|
---|
469 | ; handle calling a DOS archiver correctly! FM/2 is the only one that I
|
---|
470 | ; know of which can at this time. This means you may need to keep FM/2's
|
---|
471 | ; ARCHIVER.BB2 separate from those for other programs.
|
---|
472 | ;
|
---|
473 | Arj 2.00 DOS
|
---|
474 | ARJ
|
---|
475 | 0
|
---|
476 | ARJ.EXE l
|
---|
477 | ARJ.EXE e -y
|
---|
478 | ARJ.EXE x -y
|
---|
479 | ARJ.EXE t
|
---|
480 | ARJ.EXE a -y -e
|
---|
481 | ARJ.EXE a -y
|
---|
482 | ARJ.EXE a -y -r
|
---|
483 | ARJ.EXE m -y -e
|
---|
484 | ARJ.EXE m -y
|
---|
485 | ARJ.EXE d -y
|
---|
486 | `\xea
|
---|
487 | ------------ ---------- ---------- ----- ----------------- -------- ---- ------
|
---|
488 | ------------ ---------- ---------- -----
|
---|
489 | 1
|
---|
490 | 2
|
---|
491 | 4,0
|
---|
492 | 1
|
---|
493 | 0,0,0,0
|
---|
494 | ;
|
---|
495 | ; Entry #17 (RAR v.3.5)
|
---|
496 | ;
|
---|
497 | RAR v.3.5
|
---|
498 | RAR
|
---|
499 | 0
|
---|
500 | RAR32.EXE v -c-
|
---|
501 | RAR32.EXE e -y -c- -o+
|
---|
502 | RAR32.EXE x -y -c- -o+
|
---|
503 | RAR32.EXE t -c-
|
---|
504 | RAR32.EXE a -ep1 -y
|
---|
505 | RAR32.EXE a -y
|
---|
506 | RAR32.EXE a -r -y
|
---|
507 | RAR32.EXE mf -ep1 -y
|
---|
508 | RAR32.EXE m -y
|
---|
509 | RAR32.EXE d -y
|
---|
510 | Rar!\x1a\x07
|
---|
511 | -------------------------------------------------------------------------------
|
---|
512 | -------------------------------------------------------------------------------
|
---|
513 | 0
|
---|
514 | 1
|
---|
515 | 3,5
|
---|
516 | 2
|
---|
517 | 0,0,0,1
|
---|
518 | ;
|
---|
519 | ; Entry #18 - RAR/2 v2, provided by Eugene Roshal.
|
---|
520 | ;
|
---|
521 | RAR/2 v2
|
---|
522 | RAR
|
---|
523 | 0
|
---|
524 | RAR.EXE v -c-
|
---|
525 | RAR.EXE e -y -c- -o+
|
---|
526 | RAR.EXE x -y -c- -o+
|
---|
527 | RAR.EXE t -c-
|
---|
528 | RAR.EXE a -ep1 -y
|
---|
529 | RAR.EXE a -y
|
---|
530 | RAR.EXE a -r -y
|
---|
531 | RAR.EXE mf -ep1 -y
|
---|
532 | RAR.EXE m -y
|
---|
533 | RAR.EXE d -y
|
---|
534 | Rar!\x1a\x07
|
---|
535 | ------------------------------------------------------------------------------
|
---|
536 | ------------------------------------------------------------------------------
|
---|
537 | 0
|
---|
538 | 1
|
---|
539 | 3,0
|
---|
540 | 1
|
---|
541 | 0,0,0,1
|
---|
542 | ;
|
---|
543 | ; Entry #19 - RAR/2 v.1.53beta OS/2 SFX.
|
---|
544 | ;
|
---|
545 | RAR/2 v.1.53beta OS/2 SFX
|
---|
546 |
|
---|
547 | 13707
|
---|
548 | RAR.EXE l -c-
|
---|
549 | RAR.EXE e -y -c- -o+
|
---|
550 | RAR.EXE x -y -c- -o+
|
---|
551 | RAR.EXE t -c-
|
---|
552 | RAR.EXE a -ep1 -y
|
---|
553 | RAR.EXE a -y
|
---|
554 | RAR.EXE a -r -y
|
---|
555 | RAR.EXE mf -ep1 -y
|
---|
556 | RAR.EXE m -y
|
---|
557 | RAR.EXE d -y
|
---|
558 | Rar!\x1a\x07
|
---|
559 | ------------------------------------------------------------------------------
|
---|
560 | ------------------------------------------------------------------------------
|
---|
561 | 1
|
---|
562 | 2
|
---|
563 | 4,0
|
---|
564 | 1
|
---|
565 | 0,0,0,1
|
---|
566 | ;
|
---|
567 | ; Entry #20 - RAR v.1.53 DOS SFX.
|
---|
568 | ;
|
---|
569 | RAR v.1.53 DOS SFX
|
---|
570 |
|
---|
571 | 7195
|
---|
572 | RAR.EXE l -c-
|
---|
573 | RAR.EXE e -y -c- -o+
|
---|
574 | RAR.EXE x -y -c- -o+
|
---|
575 | RAR.EXE t -c-
|
---|
576 | RAR.EXE a -ep1 -y
|
---|
577 | RAR.EXE a -y
|
---|
578 | RAR.EXE a -r -y
|
---|
579 | RAR.EXE mf -ep1 -y
|
---|
580 | RAR.EXE m -y
|
---|
581 | RAR.EXE d -y
|
---|
582 | Rar!\x1a\x07
|
---|
583 | ------------------------------------------------------------------------------
|
---|
584 | ------------------------------------------------------------------------------
|
---|
585 | 1
|
---|
586 | 2
|
---|
587 | 4,0
|
---|
588 | 1
|
---|
589 | 0,0,0,1
|
---|
590 | ;
|
---|
591 | ; Entry #21 - RAR v.2.00 SFX.
|
---|
592 | ;
|
---|
593 | RAR v.2.00 SFX
|
---|
594 |
|
---|
595 | 28
|
---|
596 | RAR.EXE l -c-
|
---|
597 | RAR.EXE e -y -c- -o+
|
---|
598 | RAR.EXE x -y -c- -o+
|
---|
599 | RAR.EXE t -c-
|
---|
600 | RAR.EXE a -ep1 -y
|
---|
601 | RAR.EXE a -y
|
---|
602 | RAR.EXE a -r -y
|
---|
603 | RAR.EXE mf -ep1 -y
|
---|
604 | RAR.EXE m -y
|
---|
605 | RAR.EXE d -y
|
---|
606 | RSFXjr
|
---|
607 | ------------------------------------------------------------------------------
|
---|
608 | ------------------------------------------------------------------------------
|
---|
609 | 1
|
---|
610 | 2
|
---|
611 | 4,0
|
---|
612 | 1
|
---|
613 | 0,0,0,1
|
---|
614 | ;
|
---|
615 | ;
|
---|
616 | ; Entry #22 - LHarc 2.22.
|
---|
617 | ; Supposedly fixes bugs in earlier versions.
|
---|
618 | ; Actually seems to have done so. Good work, Peter.
|
---|
619 | ;
|
---|
620 | LHarc 2.22
|
---|
621 | LZH
|
---|
622 | 2
|
---|
623 | LH.EXE /o l
|
---|
624 | LH.EXE /o x
|
---|
625 | LH.EXE /o /s x
|
---|
626 | LH.EXE t
|
---|
627 | LH.EXE /o a
|
---|
628 |
|
---|
629 | LH.EXE /o /s a
|
---|
630 | LH.EXE /o m
|
---|
631 |
|
---|
632 | LH.EXE /o d
|
---|
633 | -lh
|
---|
634 | -------- -------- -----------------------------------------
|
---|
635 | -------- -----------------------------------------
|
---|
636 | 0
|
---|
637 | -1
|
---|
638 | 1,4
|
---|
639 | 1
|
---|
640 | 2,1,0,0
|
---|
641 | ;
|
---|
642 | ; Entry #23 - LHarc 2.22 using LH32 executable.
|
---|
643 | ;
|
---|
644 | LHarc-32 2.22
|
---|
645 | LZH
|
---|
646 | 2
|
---|
647 | LH32.EXE /o l
|
---|
648 | LH32.EXE /o x
|
---|
649 | LH32.EXE /o /s x
|
---|
650 | LH32.EXE t
|
---|
651 | LH32.EXE /o a
|
---|
652 |
|
---|
653 | LH32.EXE /o /s a
|
---|
654 | LH32.EXE /o m
|
---|
655 |
|
---|
656 | LH32.EXE /o d
|
---|
657 | -lh
|
---|
658 | -------- -------- -----------------------------------------
|
---|
659 | -------- -----------------------------------------
|
---|
660 | 0
|
---|
661 | -1
|
---|
662 | 1,4
|
---|
663 | 1
|
---|
664 | 2,1,0,0
|
---|
665 | ;
|
---|
666 | ; Entry #24 - LHarc 2.22 self-extractors..
|
---|
667 | ;
|
---|
668 | LHarc 2.22 SE
|
---|
669 | LZH
|
---|
670 | 22963
|
---|
671 | LH.EXE /o l
|
---|
672 | LH.EXE /o x
|
---|
673 | LH.EXE /o /s x
|
---|
674 | LH.EXE t
|
---|
675 | LH.EXE /o a
|
---|
676 |
|
---|
677 | LH.EXE /o /s a
|
---|
678 | LH.EXE /o m
|
---|
679 |
|
---|
680 | LH.EXE /o d
|
---|
681 | -lh
|
---|
682 | -------- -------- -----------------------------------------
|
---|
683 | -------- -----------------------------------------
|
---|
684 | 0
|
---|
685 | -1
|
---|
686 | 1,4
|
---|
687 | 1
|
---|
688 | 2,1,0,0
|
---|
689 | ;
|
---|
690 | ; Entry #25 - LHA 2.12 (DOS) self-extractors.
|
---|
691 | ; LH 2.22 seems to recognize them
|
---|
692 | ;
|
---|
693 | LHarc 2.12 DOS SE
|
---|
694 | LZH
|
---|
695 | 1638
|
---|
696 | LH.EXE /o l
|
---|
697 | LH.EXE /o x
|
---|
698 | LH.EXE /o /s x
|
---|
699 | LH.EXE t
|
---|
700 | LH.EXE /o a
|
---|
701 |
|
---|
702 | LH.EXE /o /s a
|
---|
703 | LH.EXE /o m
|
---|
704 |
|
---|
705 | LH.EXE /o d
|
---|
706 | -lh
|
---|
707 | -------- -------- -----------------------------------------
|
---|
708 | -------- -----------------------------------------
|
---|
709 | 0
|
---|
710 | -1
|
---|
711 | 1,4
|
---|
712 | 1
|
---|
713 | 2,1,0,0
|
---|
714 | ;
|
---|
715 | ; Entry #26 - LHA 2.12 (DOS) self-extractors.
|
---|
716 | ; LH 2.22 seems to recognize them
|
---|
717 | ;
|
---|
718 | LHarc 2.12 DOS SE
|
---|
719 | LZH
|
---|
720 | 37
|
---|
721 | LH.EXE /o l
|
---|
722 | LH.EXE /o x
|
---|
723 | LH.EXE /o /s x
|
---|
724 | LH.EXE t
|
---|
725 | LH.EXE /o a
|
---|
726 |
|
---|
727 | LH.EXE /o /s a
|
---|
728 | LH.EXE /o m
|
---|
729 |
|
---|
730 | LH.EXE /o d
|
---|
731 | $LHarc's SFX
|
---|
732 | -------- -------- -----------------------------------------
|
---|
733 | -------- -----------------------------------------
|
---|
734 | 0
|
---|
735 | -1
|
---|
736 | 1,4
|
---|
737 | 1
|
---|
738 | 2,1,0,0
|
---|
739 | ;
|
---|
740 | ; Entry #27 - LHA 2.13L (DOS) self-extractors.
|
---|
741 | ; LH 2.22 seems to recognize them
|
---|
742 | ;
|
---|
743 | LHarc 2.13 DOS SE
|
---|
744 | LZH
|
---|
745 | 36
|
---|
746 | LH.EXE /o l
|
---|
747 | LH.EXE /o x
|
---|
748 | LH.EXE /o /s x
|
---|
749 | LH.EXE t
|
---|
750 | LH.EXE /o a
|
---|
751 |
|
---|
752 | LH.EXE /o /s a
|
---|
753 | LH.EXE /o m
|
---|
754 |
|
---|
755 | LH.EXE /o d
|
---|
756 | LHA's SFX 2.13L (c) Yoshi, 1991\r\n
|
---|
757 | -------- -------- -----------------------------------------
|
---|
758 | -------- -----------------------------------------
|
---|
759 | 0
|
---|
760 | -1
|
---|
761 | 1,4
|
---|
762 | 1
|
---|
763 | 2,1,0,0
|
---|
764 | ;
|
---|
765 | ; Entry #28 - LH2 2.11.
|
---|
766 | ; NOTE: sometimes will put a file into an archive more than once, necessitating
|
---|
767 | ; deleting both. EAs not handled well, but at least they're handled.
|
---|
768 | ;
|
---|
769 | LHarc 2.11
|
---|
770 | LZH
|
---|
771 | 2
|
---|
772 | LH.EXE /o l
|
---|
773 | LH.EXE /o x
|
---|
774 | LH.EXE /o /s x
|
---|
775 | LH.EXE t
|
---|
776 | LH.EXE /o a
|
---|
777 |
|
---|
778 | LH.EXE /o /s a
|
---|
779 | LH.EXE /o m
|
---|
780 |
|
---|
781 | LH.EXE /o d
|
---|
782 | -lh
|
---|
783 | -------- -------- -----------------------------------------
|
---|
784 | -------- -----------------------------------------
|
---|
785 | 0
|
---|
786 | -1
|
---|
787 | 1,0
|
---|
788 | 1
|
---|
789 | 2,1,0,0
|
---|
790 | ;
|
---|
791 | ; Entry #29 - ZIP 1.9/UNZIP 5.0 (available in 32-bit versions).
|
---|
792 | ;ZIP/UNZIP should work with PKZIP 2.04 files. Saves EAs well. Won't
|
---|
793 | ;extract a file stored with path without the path (actually, this seems
|
---|
794 | ;to be fixed now. Maybe. There are dozens of versions floating around;
|
---|
795 | ;you don't pays your money and you takes your chances). If you have a
|
---|
796 | ;version that won't extract files with paths without the paths, there's
|
---|
797 | ;a workaround -- change the line "UNZIP.EXE -jo" below to "UNZIP.EXE -o".
|
---|
798 | ;Because of broken ZIP archives floating around everywhere, this is here
|
---|
799 | ;without the version flag in the signature (should really be PK\x03\x04\x14).
|
---|
800 | ;Damnit, it looks like Katz's own software is what does the botching. So
|
---|
801 | ;much for the keeper of the ZIP standard... Zip still seems to have to
|
---|
802 | ;have erratic problems with creating archives with some pathnames...
|
---|
803 | ;
|
---|
804 | Zip/UnZip 1.9/5.0
|
---|
805 | ZIP
|
---|
806 | 0
|
---|
807 | UNZIP.EXE -vUo
|
---|
808 | UNZIP.EXE -jo
|
---|
809 | UNZIP.EXE -o
|
---|
810 | UNZIP.EXE -to
|
---|
811 | ZIP.EXE -j9g
|
---|
812 | ZIP.EXE -9g
|
---|
813 | ZIP.EXE -r9g
|
---|
814 | ZIP.EXE -mj9g
|
---|
815 | ZIP.EXE -m9g
|
---|
816 | ZIP.EXE -d
|
---|
817 | PK\x03\x04
|
---|
818 | ------ ------ ---- ----- ---- ---- ------ ----
|
---|
819 | ------ ------ --- -------
|
---|
820 | 0
|
---|
821 | 2
|
---|
822 | 4,1
|
---|
823 | 2
|
---|
824 | 7,1,0,0
|
---|
825 | ;
|
---|
826 | ; Entry #30 - ZIP 1.9/UNZIP 5.0 using *32 executables.
|
---|
827 | ;
|
---|
828 | Zip/UnZip-32 1.9/5.0
|
---|
829 | ZIP
|
---|
830 | 0
|
---|
831 | UNZIP32.EXE -vUo
|
---|
832 | UNZIP32.EXE -jo
|
---|
833 | UNZIP32.EXE -o
|
---|
834 | UNZIP32.EXE -to
|
---|
835 | ZIP32.EXE -j9g
|
---|
836 | ZIP32.EXE -9g
|
---|
837 | ZIP32.EXE -r9g
|
---|
838 | ZIP32.EXE -mj9g
|
---|
839 | ZIP32.EXE -m9g
|
---|
840 | ZIP32.EXE -d
|
---|
841 | PK\x03\x04
|
---|
842 | ------ ------ ---- ----- ---- ---- ------ ----
|
---|
843 | ------ ------ --- -------
|
---|
844 | 0
|
---|
845 | 2
|
---|
846 | 4,1
|
---|
847 | 2
|
---|
848 | 7,1,0,0
|
---|
849 | ;
|
---|
850 | ; Entry #31 - ZIP 1.9/UNZIP 5.0, using the -l listing format.
|
---|
851 | ; (the -v long format can sometimes result in the old length field
|
---|
852 | ; being crammed together with the Method field, resulting in an
|
---|
853 | ; unparsable format). Some info, like old length, will be missing,
|
---|
854 | ; but at least you can view the contents.
|
---|
855 | ;
|
---|
856 | Zip/UnZip 1.9/5.0 Short
|
---|
857 | ZIP
|
---|
858 | 0
|
---|
859 | UNZIP.EXE -lUo
|
---|
860 | UNZIP.EXE -jo
|
---|
861 | UNZIP.EXE -o
|
---|
862 | UNZIP.EXE -to
|
---|
863 | ZIP.EXE -j9g
|
---|
864 | ZIP.EXE -9g
|
---|
865 | ZIP.EXE -r9g
|
---|
866 | ZIP.EXE -mj9g
|
---|
867 | ZIP.EXE -m9g
|
---|
868 | ZIP.EXE -d
|
---|
869 | PK\x03\x04
|
---|
870 | ------ ---- ---- ----
|
---|
871 | ------ -------
|
---|
872 | -1
|
---|
873 | 0
|
---|
874 | 1,1
|
---|
875 | 2
|
---|
876 | 3,1,0,0
|
---|
877 | ;
|
---|
878 | ; Entry #32 - Zoo 2.1.
|
---|
879 | ; NOTE: Bug in Zoo 2.1 seems to cause files stored with paths to
|
---|
880 | ; be extracted with paths even when you don't ask it to do so...
|
---|
881 | ;
|
---|
882 | Zoo 2.1
|
---|
883 | ZOO
|
---|
884 | 20
|
---|
885 | ZOO.EXE v
|
---|
886 | ZOO.EXE xO
|
---|
887 | ZOO.EXE xO/
|
---|
888 | ZOO.EXE -test
|
---|
889 | ZOO.Exe ah:
|
---|
890 | ZOO.EXE ah
|
---|
891 |
|
---|
892 | ZOO.EXE aM:h
|
---|
893 | ZOO.EXE aMh
|
---|
894 | ZOO.EXE -delete
|
---|
895 | \xdc\xa7\xc4\xfd
|
---|
896 | -------- --- -------- --------- --------
|
---|
897 | -------- --- -------- --------- --------
|
---|
898 | 0
|
---|
899 | 2
|
---|
900 | 3,2
|
---|
901 | 3
|
---|
902 | -1,0,0,0
|
---|
903 | ;
|
---|
904 | ;----------------- Older, less used archivers --------------
|
---|
905 | ;
|
---|
906 | ; Entry #33 - ARC 5.12mpl.
|
---|
907 | ;
|
---|
908 | Arc 5.12mpl
|
---|
909 | ARC
|
---|
910 | 0
|
---|
911 | ARC.EXE lwn
|
---|
912 | ARC.EXE ewn
|
---|
913 |
|
---|
914 | ARC.EXE t
|
---|
915 | ARC.EXE awn
|
---|
916 |
|
---|
917 |
|
---|
918 | ARC.EXE mwn
|
---|
919 |
|
---|
920 | ARC.EXE dwn
|
---|
921 | \x1a
|
---|
922 | ============ ======== =========
|
---|
923 | ==== ========
|
---|
924 | 1
|
---|
925 | -1
|
---|
926 | 2,3
|
---|
927 | 3
|
---|
928 | 0,0,0,0
|
---|
929 | ;
|
---|
930 | ; Entry #34 - ARC2 (6.0).
|
---|
931 | ; Note that I don't actually have a copy of this...
|
---|
932 | ;
|
---|
933 | Arc 6.0
|
---|
934 | ARC
|
---|
935 | 0
|
---|
936 | ARC.EXE l
|
---|
937 | ARC.EXE ewn
|
---|
938 |
|
---|
939 | ARC.EXE t
|
---|
940 | ARC.EXE awn
|
---|
941 |
|
---|
942 |
|
---|
943 | ARC.EXE mwn
|
---|
944 |
|
---|
945 | ARC.EXE dwn
|
---|
946 | \x1a
|
---|
947 | ================= ======== =========
|
---|
948 | ==== ========
|
---|
949 | 1
|
---|
950 | -1
|
---|
951 | 2,0
|
---|
952 | 3
|
---|
953 | 0,0,0,0
|
---|
954 | ;
|
---|
955 | ; Entry #35 - ARC2 (6.0) using ARC2 executable.
|
---|
956 | ;
|
---|
957 | Arc 6.0
|
---|
958 | ARC
|
---|
959 | 0
|
---|
960 | ARC2.EXE l
|
---|
961 | ARC2.EXE ewn
|
---|
962 |
|
---|
963 | ARC2.EXE t
|
---|
964 | ARC2.EXE awn
|
---|
965 |
|
---|
966 |
|
---|
967 | ARC2.EXE mwn
|
---|
968 |
|
---|
969 | ARC2.EXE dwn
|
---|
970 | \x1a
|
---|
971 | ================= ======== =========
|
---|
972 | ==== ========
|
---|
973 | 1
|
---|
974 | -1
|
---|
975 | 2,0
|
---|
976 | 3
|
---|
977 | 0,0,0,0
|
---|
978 | ;
|
---|
979 | ; Entry #36 (CABExtract 1.0)
|
---|
980 | ;
|
---|
981 | CABExtract 1.0
|
---|
982 | CAB
|
---|
983 | 0
|
---|
984 | Cabextract.exe -l
|
---|
985 | Cabextract.exe
|
---|
986 |
|
---|
987 |
|
---|
988 |
|
---|
989 |
|
---|
990 |
|
---|
991 |
|
---|
992 |
|
---|
993 |
|
---|
994 | MSCF
|
---|
995 | -----------+---------------------+-------------
|
---|
996 |
|
---|
997 | 0
|
---|
998 | -1
|
---|
999 | -1,0
|
---|
1000 | 2
|
---|
1001 | 5,1,0,0
|
---|
1002 | ;
|
---|
1003 | ; Entry #37 (Untgz Ver 0.95)
|
---|
1004 | ; Supplied by Gregg Young
|
---|
1005 | ;
|
---|
1006 | Untgz Ver 0.95
|
---|
1007 | TAR.GZ
|
---|
1008 | 0
|
---|
1009 | untgzos2.exe -l
|
---|
1010 | untgzos2.exe
|
---|
1011 |
|
---|
1012 | untgzos2.exe -t
|
---|
1013 |
|
---|
1014 |
|
---|
1015 |
|
---|
1016 |
|
---|
1017 |
|
---|
1018 |
|
---|
1019 | \x1f\x8b
|
---|
1020 | ------- ----- ---- ----- ---------------------------------------------------
|
---|
1021 | ------- ----- ---- ----- ---------------------------------------------------
|
---|
1022 | 0
|
---|
1023 | -1
|
---|
1024 | 1,0
|
---|
1025 | 3
|
---|
1026 | 5,1,0,0
|
---|
1027 | ;
|
---|
1028 | ;----------------- End of archiver data -----------------------
|
---|
1029 |
|
---|
1030 | ; For possible future use:
|
---|
1031 |
|
---|
1032 | ; Squeeze-it signature: (Offset 0) \x48\x4c\x53\x51\x5ah
|
---|
1033 | ; HA signature: (Offset 0) HA
|
---|
1034 | ; HAP signature: (Offset 0) \x913HF
|
---|
1035 | ; HPK signature: (Offset 0) HPAK
|
---|
1036 | ; SQZ signature: (Offset 0) HLSQZ
|
---|
1037 | ; DWZ signature: (Offset -3) DWC
|
---|
1038 |
|
---|
1039 | ; No OS/2 versions available yet to my knowledge...
|
---|
1040 |
|
---|
1041 | ;Notes on modifying/updating this file:
|
---|
1042 | ;=====================================
|
---|
1043 |
|
---|
1044 | ;You can add as many archivers as you like to this file.
|
---|
1045 | ;here are some suggestions on how to go about it:
|
---|
1046 |
|
---|
1047 | ;List an archive with the archiver, redirecting to a disk
|
---|
1048 | ;file (ex. "ARC l AFILE.ARC > TEMP."). Load the resultant
|
---|
1049 | ;file into a text editor. Clip out the startlist and endlist
|
---|
1050 | ;strings and paste directly into this file on the appropriate
|
---|
1051 | ;lines; prevents errors due to typos when copying manually.
|
---|
1052 | ;Count the positions of filename, date, etc. and place on the
|
---|
1053 | ;appropriate line. Now run the archiver redirected to a file
|
---|
1054 | ;to get its help screen (ex. "ARC > TEMP." or "ZOO h > TEMP.").
|
---|
1055 | ;Look for the various command options (extract, list, etc.) and
|
---|
1056 | ;put them into the file on the appropriate lines -- remember to
|
---|
1057 | ;add the modifiers to prevent the archiver from stopping to ask
|
---|
1058 | ;questions! You could be in deep doo-doo if it's a detached
|
---|
1059 | ;process. While it may seem a pain in the arse to have to
|
---|
1060 | ;edit this file when an archiver changes its command structure
|
---|
1061 | ;or list format, at least it's something within your control;
|
---|
1062 | ;you don't have to wait for an update to FM/2. That means if I
|
---|
1063 | ;die tomorrow you'll still be able to use FM/2 for years to come.
|
---|
1064 |
|
---|
1065 | ;Here's an example of an ARC listing (5.12mpl, command "ARC l"):
|
---|
1066 |
|
---|
1067 | ;----------------cut here----------------------
|
---|
1068 | ;Name Length Date
|
---|
1069 | ;============ ======== ========= <--this line is start-of-list
|
---|
1070 | ;MAKEFILE 374 28 Nov 89
|
---|
1071 | ;QSORT.C 14279 29 Nov 89
|
---|
1072 | ;QSORT.EXE 24629 29 Nov 89
|
---|
1073 | ;STUFF.H 371 29 Nov 89
|
---|
1074 | ; ==== ======== <--this line is end-of-list
|
---|
1075 | ;Total 4 39653
|
---|
1076 | ;----------------cut here----------------------
|
---|
1077 |
|
---|
1078 | ;Note the filename is in position 0, old length in position 1, and the
|
---|
1079 | ;date starts in position 2, with 3 parts, and there's no new length
|
---|
1080 | ;field (so it'd be -1). Compare that to the archiver entry for
|
---|
1081 | ;ARC 5.12mpl above and you should get a feel for what all those fields
|
---|
1082 | ;mean. Here's a diagram of how a file line breaks down:
|
---|
1083 |
|
---|
1084 | ;STUFF.H 371 29 Nov 89
|
---|
1085 | ; ^ ^ ^
|
---|
1086 | ; | | |
|
---|
1087 | ; | | +--Date starts in field 2, 3 parts (29, Nov, and 89)
|
---|
1088 | ; | |
|
---|
1089 | ; | +--Old file length, field 1
|
---|
1090 | ; |
|
---|
1091 | ; +--Filename, field 0 (count from 0, not 1)
|
---|
1092 |
|
---|
1093 | ;If you're adding an entirely new archive format, note that you can
|
---|
1094 | ;use 'C'-style \x<hexnumber> on the signature line in this file.
|
---|
1095 | ;For example, the \x1a in ARC 5.12mpl's signature line means FM/2 will
|
---|
1096 | ;look for an ASCII 26 (text EOF marker) in position 0 (first byte, as
|
---|
1097 | ;indicated by ARC's line 3, the offset into a file for the signature)
|
---|
1098 | ;of a file to determine if it's an archive. If line 3's offset is
|
---|
1099 | ;negative, FM/2 looks from the end of the file instead of the beginning.
|
---|
1100 | ;You can usually figure out what an archiver's signature is by looking
|
---|
1101 | ;at a few archives with a file viewing program like Vernon Buerg's
|
---|
1102 | ;LIST. By all means send me anything new you figure out for inclusion
|
---|
1103 | ;in future releases.
|
---|
1104 |
|
---|
1105 | ;You can have several entries for one type of archive in this file. FM/2
|
---|
1106 | ;tries entries sequentially to list the file until it finds one that works.
|
---|
1107 | ;If the first entry for a signature doesn't work, and FM/2 finds one that
|
---|
1108 | ;does, it moves that entry to the top of the list and rewrites ARCHIVER.BB2
|
---|
1109 | ;to make future accesses faster. This allows me to list everything I can
|
---|
1110 | ;get entries for and let FM/2 sort out what the user actually has that works.
|
---|
1111 | ;It also lets you, the user, create archives with more than one archiver that
|
---|
1112 | ;produces the same sort of archive (or with different switches, like one with
|
---|
1113 | ;LHArc producing -lh5- compression and one with it producing old, compatible
|
---|
1114 | ;-lh1- compression).
|
---|
1115 |
|
---|
1116 | ;Always end file with blank line or comment
|
---|