cpappend.bat
上传用户:zhangkaihu
上传日期:2008-02-20
资源大小:3690k
文件大小:0k
源码类别:

Web服务器

开发平台:

Java

  1. rem ---------------------------------------------------------------------------
  2. rem Append to CLASSPATH
  3. rem
  4. rem $Id: cpappend.bat,v 1.3 2002/08/04 18:19:43 patrickl Exp $
  5. rem ---------------------------------------------------------------------------
  6. rem Process the first argument
  7. if ""%1"" == """" goto end
  8. set CLASSPATH=%CLASSPATH%;%1
  9. shift
  10. rem Process the remaining arguments
  11. :setArgs
  12. if ""%1"" == """" goto doneSetArgs
  13. set CLASSPATH=%CLASSPATH% %1
  14. shift
  15. goto setArgs
  16. :doneSetArgs
  17. :end