home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / BUSINESS / AUCTION.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-01-26  |  534b  |  20 lines

  1. @echo off
  2. CLS
  3. if %1x == x goto help
  4. if %2x == x goto help
  5. echo This will copy all the AUCTION files from %1 to %2\AUCTION
  6. echo Press Ctrl Break to abort or any other key to continue
  7. pause >nul
  8. mkdir %2\AUCTION
  9. copy %1*.* %2\AUCTION
  10. goto END
  11. : help
  12. echo AUCTION Installation
  13. echo ---------------------------------------
  14. echo Usage: INSTALL [source:] [destination:]
  15. echo ---------------------------------------
  16. echo Example:  To install AUCTION from A: to the C: drive
  17. echo At the prompt type   INSTALL A: C: 
  18. : END
  19.  
  20.