"리눅스 curl"의 두 판 사이의 차이

50번째 줄: 50번째 줄:
! 옵션 !! 설명
! 옵션 !! 설명
|-
|-
| -s, -silent || 진행 상태, 에러 메시지등을 보여주지 않음
| -s, --silent || 진행 상태, 에러 메시지등을 보여주지 않음
|-
|-
| -S, -show-error || -s와 함께 사용되며 실패 시 에러메시지 출력
| -S, --show-error || -s와 함께 사용되며 실패 시 에러메시지 출력
|-
|-
| -L, --location ||  요청페이지가 다른 위치로 옮겨 졌을 경우 새로운 페이지로 다시 재요청
| -L, --location ||  요청페이지가 다른 위치로 옮겨 졌을 경우 새로운 페이지로 다시 재요청

2016년 12월 27일 (화) 14:24 판

1 개요

cURL, curl, libcurl
/usr/bin/curl
  • 원격서버(FTP, HTTP 등)에서 파일 받아 보여주는 도구[1]

2 실행예시 1: 기본

  • curl 7
root@zetawiki:~# curl 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&amp;ei=VqoMV46DJNLU8Ae7xouoBw">here</A>.
</BODY></HTML>

3 실행예시 2: 헤더정보 보기 -I

root@zetawiki:~# curl -I google.com
HTTP/1.1 302 Found
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Location: http://www.google.co.kr/?gfe_rd=cr&ei=NKoMV5TZCILD8AfCsqToCw
Content-Length: 261
Date: Tue, 12 Apr 2016 07:56:36 GMT

4 실행예시 3: 헤더+본문 보기 -i

root@zetawiki:~# curl -i google.com
HTTP/1.1 302 Found
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Location: http://www.google.co.kr/?gfe_rd=cr&ei=gqoMV9mPLczU8AefxoxA
Content-Length: 259
Date: Tue, 12 Apr 2016 07:57:54 GMT

<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&amp;ei=gqoMV9mPLczU8AefxoxA">here</A>.
</BODY></HTML>

5 주요 옵션

옵션 설명
-s, --silent 진행 상태, 에러 메시지등을 보여주지 않음
-S, --show-error -s와 함께 사용되며 실패 시 에러메시지 출력
-L, --location 요청페이지가 다른 위치로 옮겨 졌을 경우 새로운 페이지로 다시 재요청

6 같이 보기

7 주석

  1. A utility for getting files from remote servers (FTP, HTTP, and others)

8 참고 자료

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