{"id":74361,"date":"2021-06-11T16:05:50","date_gmt":"2021-06-11T20:05:50","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=74361"},"modified":"2023-10-31T15:24:45","modified_gmt":"2023-10-31T19:24:45","slug":"grep-no-matches","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/","title":{"rendered":"Why Is Grep Returning No Matches?"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-1024x538.png\" alt=\"Grep returns no matches\" class=\"wp-image-74375\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p> The grep (\u201cgo to regular expression and print\u201d) command line utility is one of the most important programs in your Unix toolkit, and indispensable when managing <a href=\"\/vps-hosting\/\">linux VPS servers<\/a>.  Grep is a powerful search tool that can help you find patterns in critical files (and directories).  It can also search recursively within multiple files to return results based on regular expressions.   <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#org3c72b0d\">Basics of Grep<\/a><\/li>\n\n\n\n<li><a href=\"#orgb9c6536\">Why Is Grep Returning No Matches?<\/a>\n<ul class=\"wp-block-list\">\n<li><a href=\"#org4749007\">Remember Case Sensitivity<\/a><\/li>\n\n\n\n<li><a href=\"#orgd20cd59\">Is It a Directory?<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"org3c72b0d\">Basics of Grep<\/h2>\n\n\n\n<p>\nWhen first starting out with <code>grep<\/code> it can be confusing to figure out what kind of options and inputs it takes.  What most people start out doing is concatenating (with <code>cat<\/code>) file contents and piping (<code>|<\/code>) then into <code>grep<\/code>.\n<\/p>\n\n\n\n<pre id=\"orgcdfc7f6\" class=\"wp-block-preformatted example\">cat file | grep \"search pattern\"\n<\/pre>\n\n\n\n<p>\nBut this is not actually necessary, because <code>grep<\/code> is capable of performing its functions without the extra step of concatenating input.\n<\/p>\n\n\n\n<pre id=\"org33c70c0\" class=\"wp-block-preformatted example\">grep \"search pattern\" file\n<\/pre>\n\n\n\n<p>\nHowever, if your goal is to concatenate (<code>cat<\/code>) different files and then search the contents then piping into <code>grep<\/code> is not a bad idea.  However, you should note that grep can search all files within a directory recursively by using the <code>-r<\/code> option.  For example:\n<\/p>\n\n\n\n<pre id=\"org4a059e7\" class=\"wp-block-preformatted example\">grep -r \"search pattern\" \/directory\/*\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"orgb9c6536\">Why Is Grep Returning No Matches?<\/h2>\n\n\n\n<p>\nIt can be frustrating to troubleshoot with <code>grep<\/code> when you don\u2019t know why it\u2019s returning no matches.  Here are a few troubleshooting steps you can take to isolate the issue.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"org4749007\">Remember Case Sensitivity<\/h3>\n\n\n\n<p>\nDon\u2019t forget that case sensitivity is a factor, especially when you are dealing with UNIX-like systems.  But often, there may be situations in which you can\u2019t recall the case of the character you are searching for, or you want to capture all instances of a word or string of text regardless of case.  In that case, you should use the <code>-i<\/code> option.  For example:\n<\/p>\n\n\n\n<pre id=\"org4af597f\" class=\"wp-block-preformatted example\">grep -i \"&lt;case insensitive search pattern&gt;\" file\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"orgd20cd59\">Is It a Directory?<\/h3>\n\n\n\n<p>\nWhen in doubt, check the error you are getting and try to work through what it is trying to communicate to you.  Take a look at the following example.  The first line of the example is the command, the second line is the error it generates:\n<\/p>\n\n\n\n<pre id=\"orga10de9d\" class=\"wp-block-preformatted example\">chris@server:~$ grep \"search\" ~\/Downloads\/\ngrep: \/home\/chris\/Downloads\/: Is a directory\n<\/pre>\n\n\n\n<p>\nThe first part of the error merely prints out \u201cgrep\u201d to let you know there is an error with <code>grep<\/code> itself.  Then it prints out the directory, followed by \u201cIs a directory.\u201d  This error indicates that you are trying to run <code>grep<\/code> on a directory.  Grep is not meant to work that way.  Grep can perform search operations on input, for example, when you are piping into, or it works upon a file or series of files as such.\n<\/p>\n\n\n\n<p>\nIf your intention in the above command example was to search instead for patterns within files inside of the \u201cDownloads\u201d directory, then all you need to do is add the <code>*<\/code> in front of the directory path, as in the following example:\n<\/p>\n\n\n\n<pre id=\"org7b09c7c\" class=\"wp-block-preformatted example\">grep \"search\" ~\/Downloads\/*\n<\/pre>\n\n\n\n<p>\nTo put the full command and output in context:\n<\/p>\n\n\n\n<pre id=\"org1b26282\" class=\"wp-block-preformatted example\">chris@server:~$ grep \"search\" ~\/Downloads\/*\nsearch pattern\n<\/pre>\n\n\n\n<p> Notice now that the <code>grep<\/code> output has come back with a match.  Remember you can always find <a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/\">complete Linux tutorials<\/a> available in the support center. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>The grep (&#8220;go to regular expression and print&#8221;) command line utility is one of the most important programs in your Unix toolkit, and indispensable when managing linux VPS servers. Grep is a powerful search tool that can help you find patterns in critical files (and directories). It can also search recursively within multiple files to<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4308],"tags":[],"class_list":["post-74361","post","type-post","status-publish","format-standard","hentry","category-linux"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Why Is Grep Returning No Matches?<\/title>\n<meta name=\"description\" content=\"The grep utility is so powerful you can use it every day, but not if it&#039;s returning no matches or giving you any useful information. Find out how to fix that.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why Is Grep Returning No Matches?\" \/>\n<meta property=\"og:description\" content=\"The grep utility is so powerful you can use it every day, but not if it&#039;s returning no matches or giving you any useful information. Find out how to fix that.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-06-11T20:05:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-31T19:24:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Why Is Grep Returning No Matches?\",\"datePublished\":\"2021-06-11T20:05:50+00:00\",\"dateModified\":\"2023-10-31T19:24:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\"},\"wordCount\":489,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-1024x538.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\",\"name\":\"Why Is Grep Returning No Matches?\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-1024x538.png\",\"datePublished\":\"2021-06-11T20:05:50+00:00\",\"dateModified\":\"2023-10-31T19:24:45+00:00\",\"description\":\"The grep utility is so powerful you can use it every day, but not if it's returning no matches or giving you any useful information. Find out how to fix that.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why Is Grep Returning No Matches?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why Is Grep Returning No Matches?","description":"The grep utility is so powerful you can use it every day, but not if it's returning no matches or giving you any useful information. Find out how to fix that.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/","og_locale":"en_US","og_type":"article","og_title":"Why Is Grep Returning No Matches?","og_description":"The grep utility is so powerful you can use it every day, but not if it's returning no matches or giving you any useful information. Find out how to fix that.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-06-11T20:05:50+00:00","article_modified_time":"2023-10-31T19:24:45+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep.png","type":"image\/png"}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Why Is Grep Returning No Matches?","datePublished":"2021-06-11T20:05:50+00:00","dateModified":"2023-10-31T19:24:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/"},"wordCount":489,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-1024x538.png","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/","name":"Why Is Grep Returning No Matches?","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1-1024x538.png","datePublished":"2021-06-11T20:05:50+00:00","dateModified":"2023-10-31T19:24:45+00:00","description":"The grep utility is so powerful you can use it every day, but not if it's returning no matches or giving you any useful information. Find out how to fix that.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/06\/Grep-1.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/grep-no-matches\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Why Is Grep Returning No Matches?"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4308,"name":"Linux","slug":"linux","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/74361","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=74361"}],"version-history":[{"count":12,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/74361\/revisions"}],"predecessor-version":[{"id":107591,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/74361\/revisions\/107591"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=74361"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=74361"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=74361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}