[Linux] curl을 통한 응답값 예쁘게 출력하는 방법(jq라이브러리)
·
OS/Linux
1. python -m json.tool 명령어 사용 curl | python -m json.tool 다음과 같이 예쁘게 출력되는 것을 볼 수 있다. 2. jq 라이브러리 사용 [사전 설치] wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 mv jq-linux64 jq chmod +x ./jq sudo cp jq /usr/bin 예제) JSON이 다음과 같이 있을 때 사용결과 { "name": "Google", "location": { "street": "1600 Amphitheatre Parkway", "city": "Mountain View", "state": "California", "country": "US" }, "..