home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / database / 5826 < prev    next >
Encoding:
Text File  |  1992-07-29  |  1.6 KB  |  45 lines

  1. Newsgroups: comp.databases
  2. Path: sparky!uunet!sun-barr!ames!nsisrv!stars.gsfc.nasa.gov!thompson
  3. From: thompson@stars.gsfc.nasa.gov (William Thompson, code 682.1, x2040)
  4. Subject: Turning off output in VMS
  5. Message-ID: <29JUL199210005500@stars.gsfc.nasa.gov>
  6. News-Software: VAX/VMS VNEWS 1.4-b1  
  7. Sender: usenet@nsisrv.gsfc.nasa.gov (Usenet)
  8. Nntp-Posting-Host: stars.gsfc.nasa.gov
  9. Organization: NASA/GSFC-Laboratory for Astronomy and Solar Physics
  10. Date: Wed, 29 Jul 1992 14:00:00 GMT
  11. Lines: 32
  12.  
  13. I tried to Email this, but it got rejected, so I'm posting my reply.
  14.  
  15. In article <1992Jul21.195448.7486@stortek.com>, you write...
  16. >In a DCL Com file, how do you turn off all
  17. >output to the screen so that the user can not
  18. >see what's taking place within the com file.
  19. >More specifically, when you run RPT you get
  20. >messages to the screen saying 125 lines written
  21. >to filename.RPF and then when the RPF command is
  22. >invoked, you get more messages. I don't want the
  23. >user seeing them, and I don't want to put this
  24. >job in a batch mode.  Theres got to be a way
  25. >to supress these messages from RPT and RPF.
  26.  
  27. I'm not specifically acquainted with the software you're trying to run, but
  28. I'll try to answer your question.  First of all you can include the line
  29.  
  30.     $ SET NOVERIFY
  31.  
  32. To turn off other output, you can enter
  33.  
  34.     $ DEFINE /USER  SYS$ERROR   NL:
  35.     $ DEFINE /USER  SYS$OUTPUT  NL:
  36.  
  37. immediately before each instance of running the RPT and RPF programs, assuming
  38. they are executable files and not command files themselves.  The effect of the
  39. DEFINE/USER statement only lasts until the next executable program exits.
  40.  
  41. Hope this helps.
  42.  
  43. Bill Thompson
  44.