vaguiners

WBatch 1.2

Feb 6th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. :janela
  2. echo off
  3. mode 30,5
  4. :variaveis
  5. set p=Downloads
  6. set c=Cookies.txt
  7. set i=historico.txt
  8. set link=null
  9. :temporarios
  10. set r=0
  11. set b=0
  12. set r=0
  13. :script
  14. title 
  15. cls
  16. set /p link="Link: "
  17. echo %link% | find /i ".txt"
  18. if "%errorlevel%"=="0" (set r=0) else (set r=1)
  19. set b=0
  20. if exist %c% set b=1
  21. if "%r%"=="0" goto lista
  22. echo %link%>>%i%
  23. if "%b%"=="0" (wget -P %p% -c %link%) else (wget --load-cookies=%c% -P %p% -c %link%)
  24. exit
  25. :lista
  26. type %link%>>%i%
  27. if "%b%"=="0" (wget -c -P %p% -i %link%) else (wget --load-cookies=%c% -c -P %p% -i %link%)
  28. exit
  29.  
  30. :: WBatch 1.2 ::
Advertisement
Add Comment
Please, Sign In to add comment