home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / BLUEQ155.ZIP / OLX22.RDR / PACKER.BAT < prev    next >
DOS Batch File  |  1994-08-12  |  703b  |  46 lines

  1. @echo off
  2. rem packer compress.exe reply_fname internals
  3. cls
  4.  
  5. if (%1)==(PKZIP) goto PK
  6. if (%1)==(PKPAK) goto PKPAK
  7. if (%1)==(LHA) goto OTHER
  8. if (%1)==(ARJ) goto OTHER
  9.  
  10. :PK
  11. if (%3)==() goto PACK
  12. md BQWRK >nul
  13. copy %3 BQWRK >nul
  14. blueqwk %2 rep-bw
  15. cls
  16. %1 %2 BQWRK\*.* %4 %5 %6 %7 %8 %9
  17. goto CLEANUP
  18.  
  19. :PKPAK
  20. if (%4)==() goto PACK
  21. md BQWRK >nul
  22. copy %4 BQWRK >nul
  23. blueqwk %3 rep-bw
  24. cls
  25. %1 %2 %3 BQWRK\*.* %5 %6 %7 %8 %9
  26. goto CLEANUP
  27.  
  28. :OTHER
  29. if (%5)==() goto PACK
  30. md BQWRK >nul
  31. copy %5 BQWRK >nul
  32. blueqwk %4 rep-bw
  33. cls
  34. %1 %2 %3 %4 BQWRK\*.* %6 %7 %8 %9
  35. goto CLEANUP
  36.  
  37. :CLEANUP
  38. echo y|del BQWRK\*.* >nul
  39. rd BQWRK >nul
  40. goto END
  41.  
  42. :PACK
  43. %1 %2 %3 %4 %5 %6 %7 %8 %9
  44.  
  45. :END
  46.