cURL 실습
네트워크 확인
curl -v telnet://ip:port
SFTP 서버로 접속 및 파일 목록 호출
curl -k sftp://ip:port//dirPath/path/ --user "id:pwd"
Upload using curl on SFTP
curl -k "sftp://83.46.38.23:22/CurlPutTest/" --user "testuser:testpassword" -T "C:\test\testfile.xml" --ftp-create-dirs
Download using curl on SFTP
curl -k "sftp://83.46.38.23:22/CurlPutTest/testfile.xml" --user "testuser:testpassword" -o "C:\test\testfile.xml" --ftp-create-dirs
# DIR 구조도 제약 없이 자동 생성
curl -k "sftp://83.46.38.23:22/CurlPutTest/testfile.xml" --user "testuser:testpassword" -o "C:\test\testfile.xml" --create-dirs
Rename using curl on SFTP
curl -k "sftp://83.46.38.23:22/CurlPutTest/" --user "testuser:testpassword" -Q "-RENAME
‘/CurlPutTest/testfile.xml’ ‘/CurlPutTest/testfile.xml.tmp’" --ftp-create-dirs
Delete using curl on SFTP
curl -k "sftp://83.46.38.23:22/CurlPutTest/ " --user "testuser:testpassword" -Q "–RM /CurlPutTest/testfile.xml" --ftp-create-dirs
Make directory using curl on SFTP
curl -k "sftp://83.46.38.23:22/CurlPutTest/test " --user "testuser:testpassword" -Q "–MKDIR /CurlPutTest/Test" --ftp-create-dirs
Remove directory using curl on SFTP
curl -k "sftp://83.46.38.23:22/CurlPutTest/test " --user "testuser:testpassword" -Q "–RMDIR /CurlPutTest/Test" --ftp-create-dirs
멀티라인 필요시
# \ - 사용해서 멀티라인
curl -k "sftp://ip:port/lookupPath/file.UTF-8" --user "username:pwd" \
-o "C:/downloadPath/file.UTF-8" --ftp-create-dirs
멀티라인으로 putty에 넣어서 실행하는 가능하지만 sh파일을 원도우에서 수정해서 올리면 작동 안하는 경우가 있다. 대표적으로
'\r': command not found
그런 경우 gitbash로 열어서
# dos에서 unix 포맷으로 바꿔줘야 한다.
# REPLACE
dos2unix run.sh
# NEW
dos2unix -n input.txt output.txt
dos2unix --newfile input.txt output.txt
# UNIX TO DOS
unix2dos myfile.txt
결과
REF
http://www.mukeshkumar.net/articles/curl/how-to-use-curl-command-line-tool-with-ftp-and-sftp
https://www.cyberciti.biz/faq/howto-unix-linux-convert-dos-newlines-cr-lf-unix-text-format/
Author And Source
이 문제에 관하여(cURL 실습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@csk917work/cURL-실습저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)