ZIPDIST.BAT
资源名称:Cimage.zip [点击查看]
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:
图片显示
开发平台:
Visual C++
- @echo off
- rem Zip up an external distribution of CImage
- if "%1" == "" goto usage
- if "%2" == "" goto usage
- echo About to archive an external CImage distribution:
- echo From %1
- echo To %2cimage.zip
- echo CTRL-C if this is not correct.
- inkey /W4 `Press any key to continue...` %%input
- erase %2cimage.zip
- cd %1
- zip -P %3 %4 %5 %6 %7 %8 %2cimage.zip @%1distribcimage.rsp
- echo CImage archived.
- goto end
- :usage
- echo CImage distribution.
- echo Usage: zipdist source destination
- echo e.g. zipogl c:projectscimage c:projectscimagedeliver
- :end