home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / port-lpr / part01 / BLURB next >
Text File  |  1993-04-09  |  1KB  |  29 lines

  1. This is a standalone lpr client that can be used to submit print jobs
  2. over a network to a machine that runs a Berkeley-style lpd server.
  3. The code is reasonably portable (not just to UNIX) and attempts to
  4. compensate for the differences in the way text files are stored on
  5. various systems.
  6.  
  7. It might be useful, for instance:
  8.  
  9. - on a UNIX machine that doesn't support printing to remote
  10.   Berkeley-style print queues, or
  11.  
  12. - to print files to a UNIX print queue from a VAX/VMS machine, either over
  13.   TCP/IP or DECnet.  A gateway from DECnet-based lpr protocol to TCP-based 
  14.   lpr protocol is supplied, but you must have a UNIX box that speaks the 
  15.   DECnet protocol in order to use this.
  16.  
  17. One of the major problems with porting lpr to other systems is the
  18. fact that the lpr protocol requires that the client determine the size
  19. of a file to be printed, as it would be stored on UNIX, before sending
  20. the file.  This program accomplishes this by reading the entire file
  21. into memory before transmitting it to the UNIX system.  This allows
  22. this lpr client to work on non-UNIX systems that store files in a
  23. different format, but it cannot print any file that is too big to fit
  24. in memory.
  25.  
  26. port-lpr is (almost) freely redistributable under the terms of the GNU
  27. General Public License.
  28.  
  29.