home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ot_archive.bat < prev    next >
DOS Batch File  |  1997-10-15  |  551b  |  28 lines

  1. @echo off
  2. rem
  3. rem %W% %G%
  4. rem
  5. rem Script to archive and compress a repository or project directory.
  6. rem
  7. rem Assumes that %M4_home% has been set correctly.
  8. rem
  9.  
  10. set tarcmd=%M4_home%\contrib\modules\archivecmds-win\bin\gnu-tar.exe
  11. set zipcmd=%M4_home%\contrib\modules\archivecmds-win\bin\gnu-gzip.exe
  12.  
  13. set src=%1
  14. set dst=%2
  15. set dstT=%dst%.tar
  16. set dstZ=%dst%.tgz
  17.  
  18. echo Creating archive %dstT% ...
  19. %tarcmd% cf %dstT% %src%
  20. echo.
  21.  
  22. echo Compressing archive into %dstZ% ...
  23. %zipcmd% >%dstZ% -c %dstT%
  24. del %dstT%
  25. echo.
  26.  
  27. echo Ready.
  28.