home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / eman110.zip / ENVIDEMO.BAT < prev    next >
DOS Batch File  |  1994-01-01  |  1KB  |  56 lines

  1. @echo off
  2.         goto START
  3.  ╔═════════════════════════════════════════════════════════════════════╗
  4.  ║  SAMPLE BATCH FILE SHOWING SOME OF THE CAPABILITIES OF ENVI_MAN     ║
  5.  ║  Version 1.0                                                        ║
  6.  ║  Copyright 1993-1994, MicroMetric, All Rights Reserved.             ║
  7.  ╚═════════════════════════════════════════════════════════════════════╝
  8. :START
  9.         cls
  10.         echo Display ENVI-MAN Syntax.
  11.         echo.
  12.         echo.        Command line will be "envi_man"
  13.         echo.
  14.         pause
  15.         envi_man
  16.  
  17.         cls
  18.         echo Display ENVI-MAN D information.
  19.         echo.
  20.         echo.        Command line will be "envi_man d"
  21.         echo.
  22.         pause
  23.         envi_man d
  24.  
  25.         cls
  26.         echo Display ENVI-MAN S information.
  27.         echo.
  28.         echo.        Command line will be "envi_man s"
  29.         echo.
  30.         pause
  31.         envi_man s
  32.         echo.
  33.         pause
  34.  
  35.         cls
  36.         echo Display ENVI-MAN D information, reserve 12 bytes memory.
  37.         echo.
  38.         echo.        Command line will be "envi_man 12-d"
  39.         echo.
  40.         pause
  41.         envi_man 12d
  42.  
  43.         cls
  44.         echo Display ENVI-MAN D information reserve 12 bytes, use all.
  45.         echo.
  46.         echo.        Command line will be "envi_man 12+d"
  47.         echo.
  48.         pause
  49.         envi_man 12+d
  50.  
  51.         cls
  52.         echo End of ENVI_MAN Sample Batch File....
  53.         echo.
  54.         pause
  55.  
  56.