D.2 cURL 명령어
명령 프롬프트에서 curl.exe를 실행해 웹 페이지를 호출할 수 있습니다. 명령 프롬프트에서 curl.exe 파일이 있는 경로로 이동합니다. Google.com을 호출하겠습니다. 명령 프롬프트에 curl www.google.com을 입력합니다.
cURL로 www.google.com 호출
D:\curl-7.56.1-win64-mingw\bin> curl www.google.com
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="http://www.google.co.kr/?gfe_rd=cr&dcr=0&ei=p8ztWerXOeXd8Aeulw8">here</A>.
</BODY></HTML>
HTML 내용이 호출됩니다.