home *** CD-ROM | disk | FTP | other *** search
/ Season's Greetings & Games Unlimited / UGOLD_cd2.iso / lemmings / install.bat < prev    next >
DOS Batch File  |  1991-07-24  |  492b  |  18 lines

  1. @echo off
  2. rem PC-Lemmings Hard disk install batch file
  3. rem usage -    install [directory to install to]
  4. rem example - install c:\games, to install in a directory c:\games\lemmings
  5.  
  6. if %1s == s goto fail
  7. if %2s == s goto fail
  8. md %2\lemmings
  9. copy %1\*.* %2\lemmings
  10. goto finish
  11.  
  12. :fail
  13. echo usage :- install [drive to install from] [directory to install to]
  14. echo example :- 'install a: c:\games', to install from drive a:
  15. echo            to a directory c:\games\lemmings
  16.  
  17. :finish
  18.