{"id":11130,"date":"2013-12-13T12:50:17","date_gmt":"2013-12-13T07:20:17","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=11130"},"modified":"2016-12-19T15:07:28","modified_gmt":"2016-12-19T09:37:28","slug":"how-to-parse-json-by-command-line-in-linux","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/","title":{"rendered":"How to parse JSON by command Line in Linux"},"content":{"rendered":"<p>Java development is often challenging, especially when you need to parse JSON from the command line. In my recent<span style=\"color: #445263\">\u00a0<a title=\"java development services\" href=\"https:\/\/tothenewco.pro\/java-development-services\">Java development project<\/a>\u00a0I had\u00a0<\/span><strong>parse JSON from the command line\u00a0<\/strong>and I explored<span style=\"color: #445263\">\u00a0available options one-by-one to find a close fit solution which can be implemented quickly.\u00a0<\/span><\/p>\n<p><span style=\"text-decoration: underline\"><strong>Requirements<\/strong><\/span><\/p>\n<p>To parse json from the command line you&#8217;ll need a software called <a href=\"http:\/\/stedolan.github.io\/jq\/download\/\">jq<\/a>\u00a0which is a command line JSON processor.<\/p>\n<p><span style=\"text-decoration: underline\"><strong>Installation<\/strong><\/span><\/p>\n<p><strong>Step1: <\/strong>Download <em>jq<\/em> Binary<\/p>\n<p>For 64-bit linux OS: \u00a0wget http:\/\/stedolan.github.io\/jq\/download\/linux64\/jq<\/p>\n<p>For 32-bit linux OS : wget <\/p>\n<p><span style=\"color: #445263\"><span style=\"font-family: Arial, Helvetica, sans-serif\"><strong>Step 2:<\/strong> chmod +x .\/jq <\/span><\/span><\/p>\n<p><span style=\"color: #445263\"><span style=\"font-family: Arial, Helvetica, sans-serif\"><strong>Step 3:<\/strong> sudo cp jq \/usr\/bin<\/span><\/span><\/p>\n<p>In this blog, I will explain things with the help of <em><span style=\"color: #445263\"><span style=\"font-family: Arial, Helvetica, sans-serif\">Demo.json <\/span><\/span><span style=\"color: #445263\"><span style=\"font-family: Arial, Helvetica, sans-serif\">or demo.txt<\/span><\/span><\/em><\/p>\n<p>[js]<br \/>\n{<br \/>\n  &amp;quot;OwnerId&amp;quot;: &amp;quot;xyz&amp;quot;,<br \/>\n  &amp;quot;ReservationId&amp;quot;: &amp;quot;abc&amp;quot;,<br \/>\n  &amp;quot;Groups&amp;quot;: [],<br \/>\n  &amp;quot;State&amp;quot;: {<br \/>\n      &amp;quot;Code&amp;quot;: 0,<br \/>\n      &amp;quot;Name&amp;quot;: &amp;quot;pending&amp;quot;<br \/>\n    },<br \/>\n  &amp;quot;Instances&amp;quot;: [<br \/>\n  {<br \/>\n    &amp;quot;Monitoring&amp;quot;: {<br \/>\n     &amp;quot;State&amp;quot;: &amp;quot;disabled&amp;quot;<br \/>\n    },<br \/>\n    &amp;quot;SecurityGroups&amp;quot;: [<br \/>\n    {<br \/>\n      &amp;quot;GroupName&amp;quot;: &amp;quot;default&amp;quot;,<br \/>\n      &amp;quot;GroupId&amp;quot;: &amp;quot;sg-xxxx&amp;quot;<br \/>\n    }<br \/>\n    ],<br \/>\n    &amp;quot;NetworkInterfaces&amp;quot;: [<br \/>\n     {<br \/>\n        &amp;quot;PrivateIpAddresses&amp;quot;: [<br \/>\n        {<br \/>\n           &amp;quot;PrivateDnsName&amp;quot;: &amp;quot;ip-xx-xx-yy-yyy&amp;quot;,<br \/>\n           &amp;quot;Primary&amp;quot;: true,<br \/>\n           &amp;quot;PrivateIpAddress&amp;quot;: &amp;quot;xx.xx.yy.yyy&amp;quot;<br \/>\n        }<br \/>\n        ],<br \/>\n        &amp;quot;PrivateDnsName&amp;quot;: &amp;quot;ip-xxx-xx-yy-yyy&amp;quot;<br \/>\n       }<br \/>\n     ]<br \/>\n   }<br \/>\n ]<br \/>\n}<br \/>\n[\/js]<\/p>\n<p>Some of the frequently used use-cases have been discussed below with Command and their respective output:<\/p>\n<p><strong>1 : To parse a JSON object:<\/strong><\/p>\n<p>Command :<\/p>\n<p>[js]cat Demo.json | jq &#8216;.OwnerId'[\/js]<\/p>\n<p>Output :<\/p>\n<p>[js]&amp;quot;xyz&amp;quot;[\/js]<\/p>\n<p><strong>2: To parse a nested JSON object:<\/strong><\/p>\n<p>Command :<\/p>\n<p>[js]cat Demo.json | jq &#8216;.State.Name'[\/js]<\/p>\n<p>Output :<\/p>\n<p>[js]&amp;quot;pending&amp;quot;[\/js]<\/p>\n<p><strong>3: To extract specific fields from a JSON object:<\/strong><\/p>\n<p>Command :<\/p>\n<p>[js]cat Demo.json | jq &#8216;.State | { Code , Name}'[\/js]<\/p>\n<p>Output :<\/p>\n<p>[js]{<br \/>\n&amp;quot;Name&amp;quot;: &amp;quot;pending&amp;quot;,<br \/>\n&amp;quot;Code&amp;quot;: 0<br \/>\n}[\/js]<\/p>\n<p><strong>4: To parse a JSON array:<\/strong><\/p>\n<p>Command :<\/p>\n<p>[js]cat Demo.json | jq &#8216;.Instances[0].Monitoring'[\/js]<\/p>\n<p>Output :<\/p>\n<p>[js]{<br \/>\n&amp;quot;State&amp;quot;: &amp;quot;disabled&amp;quot;<br \/>\n}[\/js]<\/p>\n<p>Command :<\/p>\n<p>[js]cat Demo.json | jq &#8216;.Instances[0].Monitoring.State'[\/js]<\/p>\n<p>Output :<\/p>\n<p>[js]&amp;quot;disabled&amp;quot;[\/js]<\/p>\n<p>Command :<\/p>\n<p>[js]cat Demo.json | jq &#8216;.Instances[0].NetworkInterfaces[0].PrivateIpAddresses[0].PrivateDnsName'[\/js]<\/p>\n<p>Output :<\/p>\n<p>[js]&amp;quot;ip-xxx-xx-yy-yyy&amp;quot;[\/js]<\/p>\n<p><em>In cases where you only need the value; you have to remove the \u201c\u201d by using pipeline in linux<\/em><\/p>\n<p>Command :<\/p>\n<p>[js]cat Demo.json | jq &#8216;.OwnerId&#8217; | cut -d &amp;quot;\\&amp;quot;&amp;quot; -f 2[\/js]<\/p>\n<p>Output :<\/p>\n<p>[js]xyz[\/js]<\/p>\n<p>Hope you will be able to parse JSON by command line for your next project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Java development is often challenging, especially when you need to parse JSON from the command line. In my recent\u00a0Java development project\u00a0I had\u00a0parse JSON from the command line\u00a0and I explored\u00a0available options one-by-one to find a close fit solution which can be implemented quickly.\u00a0 Requirements To parse json from the command line you&#8217;ll need a software called [&hellip;]<\/p>\n","protected":false},"author":89,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":22,"footnotes":""},"categories":[446,1],"tags":[1249,4263,49,260,1248],"class_list":["post-11130","post","type-post","status-publish","format-standard","hentry","category-java","category-technology","tag-command-line","tag-java-development","tag-json","tag-linux","tag-parse-json"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"arshad\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"How to parse JSON by command Line in Linux | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to parse JSON by command Line in Linux | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#article\",\"name\":\"How to parse JSON by command Line in Linux | TO THE NEW Blog\",\"headline\":\"How to parse JSON by command Line in Linux\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arshad\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2013-12-13T12:50:17+05:30\",\"dateModified\":\"2016-12-19T15:07:28+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#webpage\"},\"articleSection\":\"Java\\\/JVM, Technology, command line, Java development, JSON, Linux, parse json\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#listItem\",\"name\":\"How to parse JSON by command Line in Linux\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#listItem\",\"position\":3,\"name\":\"How to parse JSON by command Line in Linux\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arshad\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arshad\\\/\",\"name\":\"arshad\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/01ca831e6613ff9dcb3f9055067731741eb15ef8129f8500095e487b1880e0a0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"arshad\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/\",\"name\":\"How to parse JSON by command Line in Linux | TO THE NEW Blog\",\"description\":\"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-parse-json-by-command-line-in-linux\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arshad\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arshad\\\/#author\"},\"datePublished\":\"2013-12-13T12:50:17+05:30\",\"dateModified\":\"2016-12-19T15:07:28+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to parse JSON by command Line in Linux | TO THE NEW Blog","description":"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.","canonical_url":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#article","name":"How to parse JSON by command Line in Linux | TO THE NEW Blog","headline":"How to parse JSON by command Line in Linux","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/arshad\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2013-12-13T12:50:17+05:30","dateModified":"2016-12-19T15:07:28+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#webpage"},"articleSection":"Java\/JVM, Technology, command line, Java development, JSON, Linux, parse json"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#listItem","name":"How to parse JSON by command Line in Linux"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#listItem","position":3,"name":"How to parse JSON by command Line in Linux","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/arshad\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/arshad\/","name":"arshad","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/01ca831e6613ff9dcb3f9055067731741eb15ef8129f8500095e487b1880e0a0?s=96&d=mm&r=g","width":96,"height":96,"caption":"arshad"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/","name":"How to parse JSON by command Line in Linux | TO THE NEW Blog","description":"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/arshad\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/arshad\/#author"},"datePublished":"2013-12-13T12:50:17+05:30","dateModified":"2016-12-19T15:07:28+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to parse JSON by command Line in Linux | TO THE NEW Blog","og:description":"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.","og:url":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to parse JSON by command Line in Linux | TO THE NEW Blog","twitter:description":"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"11130","title":null,"description":"Most of the Java development teams at some point need to parse JSON command line in Linux. In this blog, we will walk you through ways of achieving it effectively.","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 16:32:47","updated":"2024-02-29 09:27:25","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to parse JSON by command Line in Linux\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"How to parse JSON by command Line in Linux","link":"https:\/\/tothenewco.pro\/blog\/how-to-parse-json-by-command-line-in-linux\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/11130","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/89"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=11130"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/11130\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=11130"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=11130"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=11130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}