home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume3 / turbo_tools / part1 / README.V30 < prev    next >
Encoding:
Text File  |  1986-11-30  |  3.0 KB  |  66 lines

  1. {readme.v30}
  2.  
  3. TURBTOOL.LBR DOCUMENTATION
  4.  
  5. This library contains the source from the book
  6. "Software Tools in Pascal" by B.W. Kernighan and
  7. P.J. Plauger, Addison-Wesley. It has been adapted
  8. for Turbo Pascal.
  9.  
  10. How to Implement:
  11.  
  12.   Compile SHELL.PAS with the CMD option
  13.   Execute SHELL
  14.  
  15. Accepts redirection, but not pipes.
  16. Bill McGee, 613-828-9130
  17.  
  18. Notes: The version using TURBO is fast enough to make
  19. this a useful set of tools for file manipulation.
  20.  
  21.           ------Further Modifications------
  22.  
  23. The primitives in this version are basically the UCSD Pascal versions
  24. presented in the book, with modifications for Turbo Pascal.
  25.  
  26. This version has been modified for use under Turbo Pascal v. 3.0
  27. under CP/M-86.  There are no system dependent statements in the code
  28. to the best of my knowledge, so it should work under MS-DOS as well.
  29.  
  30. The original version (typed in by Bill McGee) was set up for CP/M-80 and
  31. used the CHAIN capability of Turbo Pascal.  I have eliminated that
  32. feature in favor of using INCLUDE files.  There is not enough memory
  33. available in a CP/M-80 system for this version, but one could modify
  34. the include file list to eliminate unwanted features or to make more
  35. than one version, (e.g. break out EDIT, FORMAT, and DEFINE).
  36.  
  37. There was really only one change required to the McGee's original to get
  38. it to work with version 3.0.  A readln(TRM) had to be added in the
  39. subroutine GETKBD.  The change to CP/M-86 required replacing all calls
  40. to the procedure BDOS(0,0) with HALT.  This change works with the CP/M-80
  41. version of Turbo Pascal v. 3.0 as well.  Thus, as anyone can see, all of
  42. the hard work was done by Bill.
  43.  
  44. (Adaption to version 3.0 of Turbo Pascal by Jim Potter, (505) 662-5804.)
  45.  
  46. Please note that this is copyright software.  The following notice has
  47. been included with each file and should not be removed.
  48.  
  49. +-------------------------------------------------------------------------+
  50. |       Copyright (c) 1981                                                |
  51. |       By:     Bell Telephone Laboratories, Inc. and                     |
  52. |               Whitesmith's Ltd.,                                        |
  53. |                                                                         |
  54. |       This software is derived from the book                            |
  55. |               "Software Tools in Pascal", by                            |
  56. |               Brian W. Kernighan and P. J. Plauger                      |
  57. |               Addison-Wesley, 1981                                      |
  58. |               ISBN 0-201-10342-7                                        |
  59. |                                                                         |
  60. |       Right is hereby granted to freely distribute or duplicate this    |
  61. |       software, providing distribution or duplication is not for profit |
  62. |       or other commercial gain and that this copyright notice remains   |
  63. |       intact.                                                           |
  64. +-------------------------------------------------------------------------+
  65.  
  66.