Files
i2p.i2p/installer/resources/portable/win32/batch2.na
walking c212eacf19 - add new target: pkg-portable-win32 (must run buildSmall first)
- add configs/win batchfiles to installer/resources/portable

* currently only pkg-portable-win32 on win32 available
need linuxers to write target preppkg-portable-nix/pkg-portable-linux
and enable pkg-portable-win32 on linux (i doubt anyone need it ?)
shell scripts should goto installer/resources/portable/configs/linux/
2010-04-27 15:01:03 +00:00

16 lines
672 B
Plaintext

@echo off
IF NOT "%1" == "%2" GOTO EEPGET
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ~ EepGet provide resumable download from EepSite n' auto retry ~
ECHO ~ Syntax: Eepget URL -o PathOfDownloadedFile ~
ECHO ~ e.g.: Eepget http://www.i2p2.i2p/index.html -o e:\index.html ~
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO Please input URL and target Path
SET /P eepURL=URL to download:
SET /P eepLOC=Target Path for the downlaoded file:
java -cp lib/i2p.jar net.i2p.util.EepGet %eepURL% -o %eepLOC%
GOTO END
:EEPGET
java -cp lib/i2p.jar net.i2p.util.EepGet %1 %2 %3 %4 %5
:END
pause