-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathLUE.DOC
More file actions
111 lines (60 loc) · 3 KB
/
LUE.DOC
File metadata and controls
111 lines (60 loc) · 3 KB
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
LUE Command
-----------
Purpose: Extract one or more files (members) from an LU or LAR type library.
Format: LUE [d:][path]filename[.LBR] [mbrnames[.ext]]
Remarks: The library name must be supplied. It may contain a drive
and/or path names, and may contain wildcards. Only the first
matching library file is processed.
If the member name is omitted, all files are extracted. There
may be as many member file names specified as will fit in a
128-byte command line.
Wildcards may be used in the member names.
The output file names are taken from the member names.
The date and time of the output file(s) are set to the same
date and time as the input library file, unless they are
stored in the directory entry.
Directory entry format:
0 - status flag
1 - filename in FCB format
12 - offset to data
14 - length of data, 128-byte sectors
16 - creation date, MM-DD-YY
24 - creation time, HH:MM:SS
Examples:
- Extract all members from file TEST.LBR
LUE B:TEST.LBR
- Extract all COM files from file PGM.LBR
LUE PGM.LBR *.COM
- Extract member PROG.BAK from file SOURCE.LBR
LUE C:\STUFF\SOURCE.LBR PROG.BAK
- Extract all COM files from file TEST.LBR
LUE B:\BACKUP.DSK\TEST *.COM
Notes: Written for the IBM PC using DOS 2.0 or later,
Copyright 1985 by Vernon Buerg. For public domain use.
LUE duplicates the A and E function of LU. The advantages
of LUE are:
- smaller, so a copy can be kept on the "system" disk
- faster, mucho
- handles paths and wildcards.
- retains input file or member date/time
Version 1.6, June 26, 1984
Version 1.7, August 8, 1984.
Corrects problem extracting large files.
Checks for new CRC codes in directory.
Version 1.8, September 25, 1984
Extracts members from LU86 format libraries.
Version 1.9, February 8, 1985
Assumes a library file extension of LBR.
Allows wildcards in the library file name.
Allows multiple member files to be selected.