home *** CD-ROM | disk | FTP | other *** search
/ Total Meltdown / dukenukemtotalmeltdown.img / meltrun.bat < prev    next >
DOS Batch File  |  1996-07-20  |  467b  |  24 lines

  1. @echo off
  2.  
  3. if "%1"=="" goto usage
  4. if "%2"=="" goto usage
  5.  
  6. %1
  7. cd %2
  8. %3 %4 %5 %6 %7 %8 %9
  9. if errorlevel 1 goto bad
  10. goto done
  11.  
  12. :usage
  13. echo Usage: %0 drv dir command
  14. echo Runs (command) from drive (drv), directory (dir).
  15. goto done
  16.  
  17. :bad
  18. echo Something went wrong.  Try checking the DUKEDRV and DUKEDIR
  19. echo settings in your browser.tdb file.  If that doesn't help, turn
  20. echo off the "echo off" in MELTRUN.BAT, and see what's going on.
  21.  
  22. :done
  23. pause
  24.