In my UNIXUnix shell script, when iI execute a curl command, my curlthe result will be displayed as below which iI am redirecting it to file:
{"type":"Show","id":"123","title":"name","description":"Funny","channelTitle":"ifood.tv","lastUpdateTimestamp":"2014-04-20T20:34:59","numOfVideos":"15"} But, I want this output to put in the readable JSON format like below in the file:
{"type":"Show", "id":"123", "title":"name", "description":"Funny", "channelTitle":"ifood.tv", "lastUpdateTimestamp":"2014-04-20T20:34:59", "numOfVideos":"15"} Pls suggestHow do I format the output this way?