zipdist.bat
资源名称:cspeech.zip [点击查看]
上传用户:zhaopin
上传日期:2007-01-07
资源大小:79k
文件大小:1k
源码类别:
语音合成与识别
开发平台:
Visual C++
- @echo off
- rem Zip up an external distribution of CSpeech
- if "%1" == "" goto usage
- if "%2" == "" goto usage
- echo About to archive an external CSpeech distribution:
- echo From %1
- echo To %2cspeech.zip
- echo CTRL-C if this is not correct.
- inkey /W4 `Press any key to continue...` %%input
- erase %2cspeech.zip
- cd %1
- zip32 %2cspeech.zip -@ < %1distribcspeech.rsp
- echo CSpeech archived.
- goto end
- :usage
- echo CSpeech distribution.
- echo Usage: zipdist source destination
- echo e.g. zipdist d:projectscspeech d:projectscspeechdeliver
- :end