blob: 2797b3d25b783a12a41661ac50fee82c29743786 (
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
|
.TH ppudump 1 "5 June 1999" "Free Pascal" "Free Pascal Unit dump utility"
.SH NAME
ppudump \- The FPC Pascal unit dump program.
.SH SYNOPSIS
\fIppudump\fP [\-h] [\-v[h|i|m|d|s|b|a]] ppu-file1 ppufile2 ...
.SH Description
.B ppudump
writes the contents of a Free Pascal unit file to standard output.
It gives a listing of all definitions in the unit file. The format
of the listing can be controlled by the options.
.SH Usage
You can invoke ppudump with as arguments the names of the units that you
want to dump. You need not specify a extension, by default \fI.ppu\fP is
assumed. The output goes to standard output.
.SH Options
.B ppudump
has only two options:
.TP
.BI \-h
shows a short help screen.
.TP
.BI \-v xxx
Controls the level of verbosity.
.I xxx
is any combination of the following letters:
.RS
.TP
.I a
Shows all information stored in the PPU file.
.TP
.I b
Shows the browser information in the PPU file (if present).
.TP
.I d
Shows the definitions in the PPU file.
.TP
.I h
Shows the header information in the PPU file.
.TP
.I i
Shows only interface information, implementation information is
not shown.
.TP
.I m
Shows only implementation information, interface interface is not shown.
.TP
.I s
Shows the symbols stored in the PPU file.
.RE
.SH SEE ALSO
.IP
.BR ppc386 (1)
.BR ppumove (1)
|