"Curl WebDAV 파일업로드하기"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
2번째 줄: 2번째 줄:
;curl WebDAV 파일업로드하기
;curl WebDAV 파일업로드하기


* 인증이 없는 경우
{{소스헤더|인증 필요 없는 경우}}
<source lang='bash'>
<source lang='bash'>
curl -T 파일명 http://서버주소/경로/파일명
curl -T 파일명 http://서버주소/경로/파일명
</source>
</source>
* 기본인증 필요한 경우
 
{{소스헤더|기본인증 필요한 경우}}
<source lang='bash'>
<source lang='bash'>
curl -u 아이디:패스워드 -T 파일명 http://서버주소/경로/파일명
curl -u 아이디:패스워드 -T 파일명 http://서버주소/경로/파일명

2019년 10월 28일 (월) 11:55 판

1 개요

curl WebDAV 파일업로드하기
인증 필요 없는 경우
curl -T 파일명 http://서버주소/경로/파일명
기본인증 필요한 경우
curl -u 아이디:패스워드 -T 파일명 http://서버주소/경로/파일명

2 실행예시

root@zetawiki:~# curl -T greet.txt http://example.com/webdav/hello.txt
→ 로컬의 greet.txt 파일을 http://example.com/webdav/ 에 hello.txt라는 이름으로 업로드

3 같이 보기

4 참고

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