더욱 간단하고 신뢰할 수 있습니다!
일반 구문 :
sudo {http,https,ftp}_proxy=http://<username>:<password>@<proxy_url/_proxyip>:<port>/ wget --timeout=5 --no-check-certificate http://<website_url>
예:
[root@localhost ~]# sudo {http,https,ftp}_proxy=http://username:password-123@proxy.example.com:6050/ wget --timeout=5 --no-check-certificate http://google.com
{http, https, ftp} _proxy- > http, https, ftp URL. 쉼표로 구분합니다.
--timeout = 5- > 연결을 몇 초 안에 유지합니다.
-no-check-certificate- > SSL / 인증서 확인을 무시합니다.
--spider- > 파일을 다운로드하지 않고 연결을 테스트하려는 경우.
노트:
온라인 변환기 :
특수 문자를 동등한 16 진수 유니 코드로 바꾸십시오. 유니 코드 목록은 웹 사이트 https://unicode-table.com (또는) http://unicodelookup.com을 참조하십시오.
파이썬을 이용한 로컬 변환기 :
참조 : 비밀번호 "p @ s # w : E"를 유니 코드로 변환하는 방법은 다음과 같습니다.
@ = %40
$ = %24
# = %23
: = %3A
p@s#w:E = p%40s%23w%3AE
입력:
[root@localhost ~]# python -c "import sys, urllib as enc; print enc.quote_plus(sys.argv[1])" "p@s#w:E"
산출:
p%40s%23w%3AE