digest.bat
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. @echo off
  2. if "%OS%" == "Windows_NT" setlocal
  3. rem ---------------------------------------------------------------------------
  4. rem Script to digest password using the algorithm specified
  5. rem
  6. rem $Id: digest.bat 758256 2009-03-25 13:43:00Z mturk $
  7. rem ---------------------------------------------------------------------------
  8. rem Guess CATALINA_HOME if not defined
  9. if not "%CATALINA_HOME%" == "" goto gotHome
  10. set CATALINA_HOME=.
  11. if exist "%CATALINA_HOME%bintool-wrapper.bat" goto okHome
  12. set CATALINA_HOME=..
  13. :gotHome
  14. if exist "%CATALINA_HOME%bintool-wrapper.bat" goto okHome
  15. echo The CATALINA_HOME environment variable is not defined correctly
  16. echo This environment variable is needed to run this program
  17. goto end
  18. :okHome
  19. set EXECUTABLE=%CATALINA_HOME%bintool-wrapper.bat
  20. rem Check that target executable exists
  21. if exist "%EXECUTABLE%" goto okExec
  22. echo Cannot find %EXECUTABLE%
  23. echo This file is needed to run this program
  24. goto end
  25. :okExec
  26. rem Get remaining unshifted command line arguments and save them in the
  27. set CMD_LINE_ARGS=
  28. :setArgs
  29. if ""%1""=="""" goto doneSetArgs
  30. set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
  31. shift
  32. goto setArgs
  33. :doneSetArgs
  34. call "%EXECUTABLE%" -server org.apache.catalina.realm.RealmBase %CMD_LINE_ARGS%
  35. :end