home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / sun / admin / 5829 < prev    next >
Encoding:
Internet Message Format  |  1992-08-25  |  2.3 KB

  1. Path: sparky!uunet!olivea!decwrl!concert!duke!news.duke.edu!panda.mc.duke.edu
  2. From: dave@panda.mc.duke.edu (Dave Hoffman -- rjj)
  3. Newsgroups: comp.sys.sun.admin
  4. Subject: Re: Printing from Mac to Sun - NewsPrint 2.0
  5. Message-ID: <4853@news.duke.edu>
  6. Date: 25 Aug 92 17:15:31 GMT
  7. References: <JC.92Aug24203720@albatross.bu.edu>
  8. Sender: news@news.duke.edu
  9. Organization: Duke University, Nuclear Medicine
  10. Lines: 60
  11. Nntp-Posting-Host: panda.mc.duke.edu
  12.  
  13. In article <JC.92Aug24203720@albatross.bu.edu> jc@raven.bu.edu (James F. Cameron) writes:
  14. >
  15. >Question:  What is the best solution to print from the Mac to the
  16. >           SparcPrinter?  What solutions are available in general?  
  17. >
  18. >           Basically, I simply want a user to choose "Print" and have
  19. >           it sent over to the SparcPrinter without any other steps.
  20. >           Since I am a complete novice when it comes to Macs, I am
  21. >           asking the net for this info.
  22. >
  23.  
  24. Here's how I do it.  It's not as simple as you'd like, but it works:
  25.  
  26. Choose "Print" from the File menu.  If you're using System 7, you select
  27. the PostScript File radio button in the LaserWriter dialog box, then hit 
  28. the Print button.  You will be prompted for a name for the file.  I take
  29. the default "Postscript", in a folder called "SPARCprinter Folder."  You
  30. will need to have a Control Panel called Trimmer (available from sumex)
  31. in your System/Control Panels folder.  
  32.  
  33. Then, on the Sun end, I run the following script:
  34.  
  35. #! /bin/sh
  36. # print_mac_files
  37. echo Checking mac ...
  38. ftp < /usr/local/bin/ftpprint > /dev/null
  39. for file in /tmp/mac_print_queue/*
  40. do
  41.     if [ -f $file ]
  42.     then
  43.         echo Printing $file
  44.         /usr/local/bin/macps $file | lpr
  45.         rm -f $file
  46.     else
  47.         echo Nothing to Print!
  48.     fi
  49. done
  50. #####################################################
  51.  
  52. ######################################################
  53. # ftpprint
  54. open mac
  55. prompt
  56. cd "SPARCprinter Folder"
  57. lcd /tmp/mac_print_queue
  58. mget *
  59. mdelete *
  60. quit
  61. #####################################################
  62.  
  63. The program macps is available on sumex as well.
  64. I tried running print_mac_files as a cron job, but
  65. the ftp to the mac ties up the mac, so I settled on
  66. making the user run print_mac_files manually.  It's 
  67. not bad if you put it on a pull-down menu.
  68.  
  69. Good luck!
  70.  
  71. -Dave
  72. (email replies to dhoffman%lunis.dnet@lucpum.it.luc.edu)
  73.