home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Games 3 / cd.iso / games / mahjng42 / tilearch.bat < prev    next >
DOS Batch File  |  1994-08-31  |  571b  |  28 lines

  1. @echo off
  2. rem %1 = complete name of file; %2 = archive type
  3. rem %3 = specific tile set name; %4 = name without the .til extension
  4. if exist doc.doc del doc.doc
  5. if %2 == .ZIP goto zip
  6. if %2 == .LZH goto lha
  7. if %2 == .ARJ goto arj
  8. if %2 == .PAK goto pak
  9. echo.
  10. echo Unknown archive type %2
  11. echo.
  12. pause
  13. goto end
  14. :zip
  15. pkunzip -o %1 %3 %4.doc %4.txt
  16. goto end
  17. :lha
  18. lha x %1 %3 %4.doc %4.txt
  19. goto end
  20. :arj
  21. arj e %1 %3 %4.doc %4.txt
  22. goto end
  23. :pak
  24. pak e %1 %3 %4.doc %4.txt
  25. :end
  26. if exist %4.doc rename %4.doc doc.doc
  27. if exist %4.txt rename %4.txt doc.doc
  28.