/* * http://sosal.tistory.com/ * made by so_Sal */ http://users.ugent.be/~bpuype/wget/ Wget을 받는 사이트 입니다.wget.exe 파일을 받아 C:\Windows\System32 풀더에 넣으시고 (PATH 환경변수 등록된 풀더에 넣기 위함) my_downloader.bat 이란 파일을 만들고, 거기에 notepad로 아래와 같이 써줍니다. @echo offfor /f "tokens=1" %%j in (list.txt) do ("wget.exe" --content-disposition "URL을 넣는곳/%%j") list.txt파일 안에는 url 끝의 %%j에 해당하는 string들이 저장되는 파일입니다.ex)abcacdwww 이런식으..