윈도우 wget

(윈도우용 wget에서 넘어옴)

1 개요[ | ]

Windows wget equivalent
윈도우 wget
윈도우용 wget

2 방법 1: wget 설치[ | ]

3 방법 2: 파워쉘[ | ]

(new-object Net.WebClient).DownloadFile("받을파일URL", "로컬경로파일")
PS C:\Users\jmnote> (new-object Net.WebClient).DownloadFile("http://zetawiki.com/hello.txt", "C:\a.txt")
PS C:\Users\jmnote> type C:\a.txt
Hello World!

4 방법 3: CMD[ | ]

powershell "(new-object Net.WebClient).DownloadFile('받을파일URL', '로컬경로파일')"
C:\Users\jmnote>powershell "(new-object Net.WebClient).DownloadFile('http://zetawiki.com/hello.txt', 'C:\a.txt')"

C:\Users\jmnote>type c:\a.txt
Hello World!

5 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}