curl: use long arguments (#5872)

This commit is contained in:
Nicolas Kosinski
2021-05-04 11:37:07 +02:00
committed by GitHub
parent d02172f9ef
commit 69f02b6510
7 changed files with 54 additions and 54 deletions

View File

@@ -6,31 +6,31 @@
- URL의 내용을 파일로 다운로드:
`curl {{http://example.com}} -o {{파일명}}`
`curl {{http://example.com}} --output {{파일명}}`
- URL에 표시된 파일 명으로 출력을 저장하고 파일을 다운로드:
`curl -O {{http://example.com/filename}}`
`curl --remote-name {{http://example.com/filename}}`
- [L]위치 리다이렉션 후 파일을 다운로드 하고, 자동으로 이전 파일 [C]전송(재시작):
`curl -O -L -C - {{http://example.com/filename}}`
`curl --remote-name --location --continue-at - {{http://example.com/filename}}`
- 양식 인코딩 데이터 전송(`application/x-www-form-urlencoded`유형의 POST 요청):
`curl -d {{'name=bob'}} {{http://example.com/form}}`
`curl --data {{'name=bob'}} {{http://example.com/form}}`
- 사용자 지정 HTTP 메서드를 사용하여 추가 헤더로 요청 전송:
`curl -H {{'X-My-Header: 123'}} -X {{PUT}} {{http://example.com}}`
`curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}`
- 적절한 컨텐츠 유형 헤더를 지정하여 JSON 포멧으로 데이터 전송:
`curl -d {{'{"name":"bob"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/users/123}}`
`curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/123}}`
- 서버 인증을 위한 사용자 이름 및 비밀번호 전달:
`curl -u myusername:mypassword {{http://example.com}}`
`curl --user myusername:mypassword {{http://example.com}}`
- 리소스에 대한 클라이언트 인증서 및 키 전달, 인증서 유효성 검사 스킵: