Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- echo off
- cls
- :set
- title 4Chan Batch Downloader
- set get=wget.exe
- set board=null
- set thread=null
- :inicio
- cls
- echo.
- set /p board="Please Enter Board: "
- set /p thread="Please Enter Thread: "
- if "%board%"=="null" goto inicio
- if "%thread%"=="null" goto inicio
- if not exist img mkdir img
- cd img
- if not exist %board%-%thread% mkdir %board%-%thread%
- cd..
- copy wget.exe "./img/%board%-%thread%"
- cd img
- cd %board%-%thread%
- wget -H --no-directories -D images.4chan.org -r -l 1 -U Mozilla -A jpeg,jpg,png,gif -nc --wait 3 --random-wait -e robots=off http://boards.4chan.org/%board%/res/%thread%
- del wget.exe
- cd..
- cd..
- goto set
- ::4Chan Batch Downloader - ChangeLog
- v1.0 - 29/04/2012
- : Finalizado as linhas mais importantes, com alguns ajustes.
Add Comment
Please, Sign In to add comment