home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR21 / LANLOG11.ZIP / REPTEG01.BAT < prev    next >
DOS Batch File  |  1993-08-01  |  2KB  |  48 lines

  1. ECHO OFF
  2. CLS
  3. rem     This BAT file provides an example use of the LANLOG's report
  4. rem     generation utility LLREPORT.COM.
  5. rem
  6. rem           Title: Simple Report of each meter file in current Path
  7. rem     Description: Runs LLREPORT passing it the *.MET file spec.
  8. rem                  LLREPORT prints the contents of any meter files
  9. rem                  found in the current path.
  10.  
  11. rem     Call LLREPORT with appropriate file specification.
  12.  
  13. :REPT
  14.  
  15. ECHO    ╔══════════════════════════════════════════════════════╗
  16. ECHO    ║     REPORTING ALL METER FILES IN CURRENT DIRECTORY   ║
  17. ECHO    ╠══════════════════════════════════════════════════════╣
  18. ECHO    ║                                                      ║
  19. ECHO    ║       The report will be generated to the screen     ║
  20. ECHO    ║       to pause report production press the space     ║
  21. ECHO    ║       bar. To halt report production press any       ║
  22. ECHO    ║       other key. To abort the report production      ║
  23. ECHO    ║       now press {Cntrl-C}.                           ║
  24. ECHO    ║                                                      ║
  25. ECHO    ║   {Cntrl-C} = terminate, any other key = continue    ║
  26. ECHO    ║                                                      ║
  27. ECHO    ╚══════════════════════════════════════════════════════╝
  28.  
  29. rem     get user response
  30.  
  31. PAUSE
  32.  
  33. rem     Run the LLREPORT.COM file
  34.  
  35. LLREPORT *.MET
  36.  
  37. rem     This command presumes that a copy of LLREPORT exists in the
  38. rem     the current directory or that it can be found in your PATH
  39. rem     statement.
  40.  
  41. goto QUIT
  42.  
  43. rem     The End
  44.  
  45. :QUIT
  46.  
  47. ECHO ON
  48.