格式化curl GET检索的数据

时间:2017-11-30 00:22:56

标签: json curl

使用curl,我有一个GET函数,它可以很好地检索数据(来自Trello的API),但它作为一个JSON出现在一条线上。我用来读取和解释检索到的数据的软件只能读取32,000个字符的行。

有没有人知道如何让它以在Notepad ++中打开它并选择JSON Viewer(或任何其他方式)时的方式包含回车。

卷曲代码是:

{LocationOfCurlOnMyServer} -H "Content-Type: text; charset=utf-8" 

-o "{OutputFileName}" 

--request GET --url "{TrelloURL}"

1 个答案:

答案 0 :(得分:0)

您可以使用jq JSON parser和curl:

curl -L "http://citibikenyc.com/stations/json" | jq '.' > output.json