home *** CD-ROM | disk | FTP | other *** search
/ Riki 1995 December / Riki1295-15.ima / INSTALUJ.BAT next >
DOS Batch File  |  1995-11-28  |  411b  |  24 lines

  1. @echo off
  2. if "%1" == "" goto syntax_error
  3. if "%2" == "" goto syntax_error
  4.  
  5. if not exist %1%2\NUL mkdir %1%2 > NUL
  6.  
  7. copy quad.exe %1%2 > NUL
  8. %1
  9. cd %2
  10. %1quad.exe
  11. del %1quad.exe
  12. goto end
  13.  
  14. :mkdir_error
  15. echo Chyba pri vytvarani adresara %1%2 !!!!
  16. goto end
  17.  
  18. :syntax_error
  19. echo  
  20. echo Syntax: instaluj.bat cielovy_disk: cielovy_adresar
  21. echo  
  22. echo Priklad: instaluj.bat  d:  \games\quadrax
  23.  
  24. :end