extractor.cmd

来自「用JAVA编写的,在做实验的时候留下来的,本来想删的,但是传上来,大家分享吧」· CMD 代码 · 共 29 行

CMD
29
字号
:: This is the Windows version of the extractor shell script
:: Caveats, see heritrix.cmd
:::: This script runs the org.archive.crawler.extractor.ExtractorTool main.:: Pass '--help' to get usage message.:::: Optional environment variables:::: JAVA_HOME        Point at a JDK install to use.:: :: HERITRIX_HOME    Pointer to your heritrix install.  If not present, we ::                  make an educated guess based of position relative to this::                  script.:::: JAVA_OPTS        Java runtime options.@echo off

set PRGDIR=%~p0

if "%PRGDIR%"=="~p0" (
  cmd /E:ON /F:ON /V:ON /c %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
  goto:eof
)
set CLASS_MAIN=org.archive.crawler.extractor.ExtractorTool
call "%PRGDIR%\foreground_heritrix.cmd" %*set CLASS_MAIN=

:eof

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?