Unixシェルスクリプトで、curlコマンドを実行すると、結果が以下のように表示され、ファイルにリダイレクトしています。
{"type":"Show","id":"123","title":"name","description":"Funny","channelTitle":"ifood.tv","lastUpdateTimestamp":"2014-04-20T20:34:59","numOfVideos":"15"}
しかし、私はこの出力を以下のような読みやすいJSON形式でファイルに入れたいです:
{"type":"Show",
"id":"123",
"title":"name",
"description":"Funny",
"channelTitle":"ifood.tv",
"lastUpdateTimestamp":"2014-04-20T20:34:59",
"numOfVideos":"15"}
この方法で出力をフォーマットするにはどうすればよいですか?