curl -s -G
-s, —slient
프로그레스나 에러 정보를 보여주지 않는다.
curl -x http://localhost:11000 http://naver.com -i
HTTP/1.1 404 Not Found
Content-Type: Application/xml;charset=UTF-8
Content-Length: 0
Connection: close
프록시를 사용
curl은 HTTP, HTTPS 및 SOCKS를 비롯한 다양한 유형의 프록시를 지원합니다. 프록시 서버를 통해 데이터를 전송하려면 -x(--proxy) 옵션을 선택한 다음 프록시 URL을 사용합니다.
다음 명령은 192.168.44.1 포트 8888에서 프록시를 사용하여 지정된 리소스를 다운로드합니다.
curl -x 192.168.44.1:8888 http://linux.com/
프록시 서버에 인증이 필요한 경우 -U(--proxy-user) 옵션을 사용하고 사용자 이름과 암호를 콜론(user:password)으로 구분합니다.
curl -U username:password -x 192.168.44.1:8888 http://linux.com/
https://jjeongil.tistory.com/1313
curl -s http://169.254.169.254/latest/meta-data/instance-id
자신의 인스턴스 아이디 돌려줌
aws ec2 describe-instances --instance-ids 자신의 인스턴스 아이디
인스턴스 정보 돌려줌
'검색용 개발 블로그' 카테고리의 다른 글
bit and 연산자 (a&b>0) (0) | 2021.08.27 |
---|---|
SQLite (.db3) (0) | 2021.08.27 |
rundeck crontab (0) | 2021.08.26 |
인스턴스 종료 -> 살릴 수 있나요? (0) | 2021.08.25 |
Unable to locate credentials. You can configure credentials by running "aws configure" (0) | 2021.08.25 |