zipdist.bat
上传用户:zhaopin
上传日期:2007-01-07
资源大小:79k
文件大小:1k
源码类别:

语音合成与识别

开发平台:

Visual C++

  1. @echo off
  2. rem Zip up an external distribution of CSpeech
  3. if "%1" == "" goto usage
  4. if "%2" == "" goto usage
  5. echo About to archive an external CSpeech distribution:
  6. echo   From   %1
  7. echo   To     %2cspeech.zip
  8. echo CTRL-C if this is not correct.
  9. inkey /W4 `Press any key to continue...` %%input
  10. erase %2cspeech.zip
  11. cd %1
  12. zip32 %2cspeech.zip -@ < %1distribcspeech.rsp
  13. echo CSpeech archived.
  14. goto end
  15. :usage
  16. echo CSpeech distribution.
  17. echo Usage: zipdist source destination
  18. echo e.g. zipdist d:projectscspeech d:projectscspeechdeliver
  19. :end