delp.1 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .TH delp 1 "12 Dec 1999" "Free Pascal" "Free Pascal file deletion tool"
  2. .SH NAME
  3. delp \- The Free Pascal file deletion tool.
  4. .SH SYNOPSIS
  5. .B delp [options] directory
  6. .SH DESCRIPTION
  7. .B delp
  8. deletes files in the specified directory that are left over from a Free Pascal
  9. compilation process. It knows what files can be produced by the compile
  10. steps and deletes any such files it finds. At the end it gives a summary of
  11. the number of files that were deleted, together with the amount of bytes
  12. freed by this process.
  13. .SH USAGE
  14. .B delp
  15. takes the following options at this time:
  16. .TP
  17. .B \-e
  18. Delete all executable files as well. This option has no effect on Linux.
  19. .TP
  20. .B \-h
  21. Displays a short help message.
  22. .TP
  23. .B \-q
  24. Be more quiet. Normally, delp gives a count of the number of files deleted.
  25. If this option is given, no messages are displayed.
  26. .SH FILE TYPES:
  27. The following file types are recognized by the program and are deleted:
  28. .TP
  29. .I *.exe
  30. Executable files under dos and windows. Only deleted if the
  31. .I \-e
  32. option is given.
  33. .TP
  34. .I *.so *.dll
  35. Shared libraries under linux and Windows.
  36. .TP
  37. .I *.tpu *.tpp *.tpw *.tr
  38. Turbo Pascal compiled units.
  39. .TP
  40. .I *.log *.bak
  41. Backup files and log files.
  42. .TP
  43. .I *.ppu *.o *.a *.s
  44. Compiled units, object files, archives and assembler files created by the
  45. Free Pascal compiler on Linux or Dos
  46. .TP
  47. .I *.ppw *.ow *.aw *.sw
  48. Compiled units, object files, archives and assembler files created by the
  49. Free Pascal compiler on Windows.
  50. .TP
  51. .I *.pp1 *.o1 *.a1 *.s1
  52. Compiled units, object files, archives and assembler files created by the
  53. Free Pascal compiler on the go321v1 platform.
  54. .TP
  55. .I *.ppo *.oo *.ao *.so
  56. Compiled units, object files, archives and assembler files created by the
  57. Free Pascal compiler on the OS/2 platform.
  58. .TP
  59. .I ppas.bat ppas.sh link.res fpcmaked
  60. Batch files, link script and makefile utility files.
  61. .SH SEE ALSO
  62. .IP
  63. .BR fpcmake (1)
  64. .BR ppc386 (1)
  65. .BR make (1)