I have some API result I wanted to clean up. I have been trying with grep to only show the Name under Technologies but I can't seem to figure it out yet.
Any ideas? (Here's a small snippet of the giant json file)
{
"Results": [
{
"Lookup": null,
"Result": {
"Paths": [
{
"Domain": "builtwith.com",
"Url": "",
"SubDomain": "",
"Technologies": [
{
"Categories": null,
"Name": "Amazon CloudFront",
"Tag": "cdns",
"FirstDetected": 1386284400000,
"LastDetected": 1411599600000
},
{
"Categories": null,
"Name": "ASP.NET 4.0",
"Tag": "framework",
"FirstDetected": 1385679600000,
"LastDetected": 1430265600000
},
{
"Categories": null,
"Name": "Comodo PositiveSSL",
"Tag": "ssl",
"FirstDetected": 1372806000000,
"LastDetected": 1430265600000
}
]
I am not stuck on grep.. but it seems like grep would the best idea. I am open to others if needed.