vaguiners

4Chan Batch Downloader - v1.0

Feb 2nd, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. echo off
  2. cls
  3. :set
  4. title 4Chan Batch Downloader
  5. set get=wget.exe
  6. set board=null
  7. set thread=null
  8. :inicio
  9. cls
  10. echo.
  11. set /p board="Please Enter Board: "
  12. set /p thread="Please Enter Thread: "
  13. if "%board%"=="null" goto inicio
  14. if "%thread%"=="null" goto inicio
  15. if not exist img mkdir img
  16. cd img
  17. if not exist %board%-%thread% mkdir %board%-%thread%
  18. cd..
  19. copy wget.exe "./img/%board%-%thread%"
  20. cd img
  21. cd %board%-%thread%
  22. 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%
  23. del wget.exe
  24. cd..
  25. cd..
  26. goto set
  27.  
  28. ::4Chan Batch Downloader - ChangeLog
  29.  
  30. v1.0 - 29/04/2012
  31. : Finalizado as linhas mais importantes, com alguns ajustes.
Add Comment
Please, Sign In to add comment