home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- CLS
- rem This BAT file provides an example use of LANLOG's report
- rem generation utility LLREPORT.COM.
- rem
- rem Title: Report meter files in directory creating .tot file
- rem Description: Runs LLREPORT in the current directory passing it
- rem the wildcard *.MET and the command line option
- rem /TOT, LLREPORT produces LANLOG.TOT file.
-
- rem Inform user of actions.
-
- :INST
-
- ECHO ╔══════════════════════════════════════════════════════╗
- ECHO ║ REPORTING METER FILES AND GENERATING LANLOG.TOT ║
- ECHO ╠══════════════════════════════════════════════════════╣
- ECHO ║ ║
- ECHO ║ This BATCH file generates a report of all meter ║
- ECHO ║ files in the current directory and creates a ║
- ECHO ║ total file LANLOG.TOT. To pause report production ║
- ECHO ║ press the space bar, to halt press any other key. ║
- ECHO ║ Press {Cntrl-C} to abort this report now. ║
- ECHO ║ ║
- ECHO ║ {Cntrl-C} = terminate, any other key = continue ║
- ECHO ║ ║
- ECHO ╚══════════════════════════════════════════════════════╝
-
- rem get user response
-
- PAUSE
-
- rem Run the LLREPORT.COM file
-
- LLREPORT *.MET /TOT
-
- rem LLREPORT will report the contents of any meter files to the
- rem screen and concatenate the information into a total file
- rem LANLOG.TOT. This contains a summation of all other meter files
-
- goto QUIT
-
- rem The End
-
- :QUIT
-
- ECHO ON
-