ppudump.1 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .TH ppudump 1 "5 June 1999" "Free Pascal" "Free Pascal Unit dump utility"
  2. .SH NAME
  3. ppudump \- The FPC Pascal unit dump program.
  4. .SH SYNOPSIS
  5. \fIppudump\fP [-h] [-v[h|i|m|d|s|b|a]] ppu-file1 ppufile2 ...
  6. .SH Description
  7. .B ppudump
  8. writes the contents of a Free Pascal unit file to standard output.
  9. It gives a listing of all definitions in the unit file. The format
  10. of the listing can be controlled by the options.
  11. .SH Usage
  12. You can invoke ppudump with as arguments the names of the units that you
  13. want to dump. You need not specify a extension, by default \fI.ppu\fP is
  14. assumed. The output goes to standard output.
  15. .SH Options
  16. .B ppudump
  17. has only two options:
  18. .TP
  19. .BI \-h
  20. shows a short help screen.
  21. .TP
  22. .BI \-v xxx
  23. Controls the level of verbosity.
  24. .I xxx
  25. is any combination of the following letters:
  26. .RS
  27. .TP
  28. .I a
  29. Shows all information stored in the PPU file.
  30. .TP
  31. .I b
  32. Shows the browser information in the PPU file (if present).
  33. .TP
  34. .I d
  35. Shows the definitions in the PPU file.
  36. .TP
  37. .I h
  38. Shows the header information in the PPU file.
  39. .TP
  40. .I i
  41. Shows only interface information, implementation information is
  42. not shown.
  43. .TP
  44. .I m
  45. Shows only implementation information, interface interface is not shown.
  46. .TP
  47. .I s
  48. Shows the symbols stored in the PPU file.
  49. .RE
  50. .SH SEE ALSO
  51. .IP
  52. .BR ppc386 (1)
  53. .BR ppumove (1)