Wget is a super-useful utility to download pages and automate all types of web related tasks. wget는 슈퍼 - 유용한 유틸리티를 다운로드 페이지 및 모든 종류의 웹 관련 작업을 자동화합니다. It works for HTTP as well as FTP URL’s. http뿐만 아니라 효과가 FTP를 url을합니다. Here is a brief tutorial on how to use wget through proxy server. 다음은 wget을 사용하는 방법에 대한 간단한 튜토리얼에서 프록시 서버를 통해합니다.

To get wget to use a proxy, you must set up an environment variable before using wget. wget을 사용하는 프록시를해야합니다 wget를 사용하기 전에 환경 변수를 설정합니다. Type this at the command prompt / console: 이 명령 프롬프트에서 입력 / 콘솔 :
For Windows: 에 대한 윈도우 :
set http_proxy=http:// proxy.example.com : 8080 세트 http_proxy = http:// proxy.example.com : 8080

For Linux/Unix: 에 대한 리눅스 / 유닉스 :
export http_proxy="http:// proxy.example.com : 8080 " 수출 http_proxy = "http:// proxy.example.com : 8080"

Replace proxy.example.com with your actual proxy server. proxy.example.com은 귀하의 실제 프록시 서버를 교체합니다.
Replace 8080 with your actual proxy server port. 8080은 귀하의 실제 프록시 서버에 포트를 교체합니다.

You can similarly use ftp_proxy to proxy ftp requests. 프록시를 유사하게 사용하실 수있습니다 ftp_proxy를 FTP를 요청합니다. An example on Linux would be: 리눅스는 예입니다 :
export ftp_proxy="http:// proxy.example.com : 8080 " 수출 ftp_proxy = "http:// proxy.example.com : 8080"

Then you should specify the following option in wget command line to turn the proxy behavior on: 그렇다면 다음과 같은 옵션을 지정해야합니다 wget 커맨드 라인에서 프록시 동작을 설정 :
–proxy=on - 프록시를 =에

Alternatively you can use the following to turn it off: 또한 다음과 같은를 켜거나 끌 때 사용할 수있습니다 :
–proxy=off - 프록시를 = 해제

You can use –proxy-username=" user name " –proxy-passwd=" password " to set proxy user name and password where required. - 프록시를 사용할 수있습니다 - 사용자 이름 = "사용자 이름을"- 프록시 - 비밀 번호 = "비밀 번호"를 설정 프록시 사용자 이름과 암호를 어디에 필요합니다.
Replace user name with your proxy server user name and password with your proxy server password. 귀하의 프록시 서버에 사용자 이름을 바꾸기로 사용자 이름과 비밀 번호를 귀하의 프록시 서버에 비밀 번호를합니다. Another alternative is to specify them in http_proxy / ftp_proxy environment variable as follows: 또 다른 방법은 그들을 지정하려면 http_proxy / ftp_proxy 환경 변수를 다음과 같이 :
export http_proxy="http:// username : password @ proxy.example.com : 8080 " 수출 http_proxy = "http:// 사용자 이름 : password@proxy.example.com : 8080"