home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / 4415 / SUPPORT.BAT < prev    next >
DOS Batch File  |  1993-10-07  |  2KB  |  70 lines

  1. @echo off
  2.  
  3. REM  SUPPORT.BAT
  4. REM  Packs archive files SWAGX-Y using current .SWG files,
  5. REM  Support sites DO NOT have to download the ENTIRE SWAG files package
  6. REM  with each release.  All that is necessary is to download SWAGYYMM.ZIP
  7. REM  OR ALLSWAGS.ZIP.  SWAGYYMM.ZIP can be used to update the current copy
  8. REM  of ALLSWAGS.ZIP that the support site has.  Once this is done, the
  9. REM  smaller support archives can be created with this batch file.
  10.  
  11. REM  This makes it easy for Support sites to download ONLY the SWAG update
  12. REM  or the ALLSWAGS.ZIP and create the five supporting archives.
  13. REM
  14. REM  There are TWO varibles needed with this batch file.
  15. REM  %1 is the directory location of your SWAG ZIP files.
  16. REM  %2 is the directory location of your *.SWG files.
  17. REM  therefore, call this for DOS :  support [swagzips] [swagfiles]
  18.  
  19. IF "%1" == "" GOTO SYNTAX
  20. IF "%2" == "" GOTO SYNTAX
  21.  
  22. REM  Create SWAGA-C.ZIP
  23. DEL %1\swaga-c.zip
  24. PKZIP -ex %1\swaga-c.zip %2\a????????.swg
  25. PKZIP -ex %1\swaga-c.zip %2\b????????.swg
  26. PKZIP -ex %1\swaga-c.zip %2\c????????.swg
  27.  
  28. REM  Create SWAGD-F.ZIP
  29. DEL %1\swagd-f.zip
  30. PKZIP -ex %1\swagd-f.zip %2\d????????.swg
  31. PKZIP -ex %1\swagd-f.zip %2\e????????.swg
  32. PKZIP -ex %1\swagd-f.zip %2\f????????.swg
  33.  
  34. REM  Create SWAGG-M.ZIP
  35. DEL %1\swagg-m.zip
  36. PKZIP -ex %1\swagg-m.zip %2\g????????.swg -x%2\grepswag.???
  37. PKZIP -ex %1\swagg-m.zip %2\h????????.swg
  38. PKZIP -ex %1\swagg-m.zip %2\i????????.swg
  39. PKZIP -ex %1\swagg-m.zip %2\j????????.swg
  40. PKZIP -ex %1\swagg-m.zip %2\k????????.swg
  41. PKZIP -ex %1\swagg-m.zip %2\l????????.swg
  42. PKZIP -ex %1\swagg-m.zip %2\m????????.swg
  43.  
  44. REM  Create SWAGN-R.ZIP
  45. DEL %1\swagn-r.zip
  46. PKZIP -ex %1\swagn-r.zip %2\n????????.swg
  47. PKZIP -ex %1\swagn-r.zip %2\o????????.swg
  48. PKZIP -ex %1\swagn-r.zip %2\p????????.swg
  49. PKZIP -ex %1\swagn-r.zip %2\q????????.swg
  50. PKZIP -ex %1\swagn-r.zip %2\r????????.swg
  51.  
  52. REM  Create SWAGS-Z.ZIP
  53. DEL %1\swags-z.zip
  54. PKZIP -ex %1\swags-z.zip %2\s????????.swg
  55. PKZIP -ex %1\swags-z.zip %2\t????????.swg
  56. PKZIP -ex %1\swags-z.zip %2\u????????.swg
  57. PKZIP -ex %1\swags-z.zip %2\v????????.swg
  58. PKZIP -ex %1\swags-z.zip %2\w????????.swg
  59. PKZIP -ex %1\swags-z.zip %2\x????????.swg
  60. PKZIP -ex %1\swags-z.zip %2\y????????.swg
  61. PKZIP -ex %1\swags-z.zip %2\z????????.swg
  62.  
  63. CANCEL
  64.  
  65. :SYNTAX
  66. ECHO SUPPORT.BAT Create SWAG Support ZIPS from *.SWG Files
  67. ECHO SYNTAX: SUPPORT [swagZIPpath] [swagFILESpath]
  68.  
  69. ECHO   e.g. "SUPPORT \swag\zips \swag\files"
  70.