home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / DOSENV.ZIP / DOSENV.BAT next >
Encoding:
DOS Batch File  |  1987-11-21  |  289 b   |  19 lines

  1. echo off
  2. cls
  3. envdos %1 %2 %3 %4 %5 %6 %7 %8 %9
  4. echo  
  5. if errorlevel 255 goto e255
  6. if errorlevel 1 goto e1
  7. if errorlevel 0 goto e0
  8. echo ERRORLEVEL was ?
  9. goto exit
  10. :e255
  11. echo ERRORLEVEL was 255
  12. goto exit
  13. :e0
  14. echo ERRORLEVEL was 0
  15. goto exit
  16. :e1
  17. echo ERRORLEVEL was 1
  18. :exit
  19.