{"id":18333,"date":"2023-11-21T04:48:53","date_gmt":"2023-11-21T04:48:53","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18333"},"modified":"2023-11-21T04:48:53","modified_gmt":"2023-11-21T04:48:53","slug":"egrep-command-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/","title":{"rendered":"EGREP Command In Linux With Examples"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg\" alt=\"\" \/><br \/>\nLinux is renowned for its powerful command-line tools, which offer tremendous flexibility and control over various tasks. One of these essential tools is egrep. egrep is a versatile command that allows users to search and manipulate text using regular expressions. In this article, we will delve into the depths of egrep, exploring its capabilities, syntax, and providing practical examples to help you harness its potential.<\/p>\n<h2>What is egrep in Linux?<\/h2>\n<p>egrep is a command-line utility that searches text using extended regular expressions. It is an enhanced version of the grep command, providing additional features and flexibility for matching patterns in text. Regular expressions are sequences of characters that define search patterns, making them powerful tools for text manipulation.<\/p>\n<h3>Basic Syntax of egrep in Linux<\/h3>\n<p>The basic syntax of the egrep command is:<\/p>\n<pre><code>egrep [options] pattern [file(s)]<\/code><\/pre>\n<ul>\n<li><strong>options:<\/strong> These are optional flags that modify egrep&#8217;s behavior.<\/li>\n<li><strong>pattern:<\/strong> This is the regular expression pattern you want to search for.<\/li>\n<li><strong>file(s):<\/strong> These are the optional files you want to search within. If omitted, egrep will read from standard input.<\/li>\n<\/ul>\n<p><strong>Common Options<\/strong><br \/>\negrep provides a wide array of options to fine-tune its behavior. Here are some of the most common ones:<\/p>\n<ul>\n<li><strong>-i (ignore case):<\/strong> This flag makes the pattern matching case-insensitive.<\/li>\n<li><strong>-v (invert match):<\/strong> It returns lines that do not match the pattern.<\/li>\n<li><strong>-r (recursive):<\/strong> Searches directories and their subdirectories.<\/li>\n<li><strong>-l (list filenames):<\/strong> Displays only the names of files that contain matching lines.<\/li>\n<li><strong>-o (only matching):<\/strong> Prints only the part of the line that matches the pattern.<\/li>\n<li><strong>-c (count):<\/strong> Shows the count of matching lines.<\/li>\n<li><strong>-n (line numbers):<\/strong> Displays line numbers along with matching lines.<\/li>\n<li><strong>-E (extended regular expressions):<\/strong> This option allows you to use extended regular expressions. It is not required since egrep always uses extended regular expressions, but it&#8217;s good practice to include it for clarity.<\/li>\n<\/ul>\n<h3>Examples of egrep Command in Linux:<\/h3>\n<p>Let&#8217;s dive into practical examples to showcase the versatility of the egrep command.<\/p>\n<p><strong>Example 1: Basic Text Search<\/strong><br \/>\nSuppose you have a file named sample.txt with the following content:<\/p>\n<pre><code>Linux is an amazing operating system.\nLinux enthusiasts love using Linux.\nLinux has a vibrant community.<\/code><\/pre>\n<p>You can use egrep to search for lines containing the word &quot;Linux&quot;:<\/p>\n<pre><code>egrep 'Linux' sample.txt<\/code><\/pre>\n<p><strong>Output will be:<\/strong><\/p>\n<pre><code>Linux is an amazing operating system.\nLinux enthusiasts love using Linux.\nLinux has a vibrant community.<\/code><\/pre>\n<p><strong>Example 2: Case-Insensitive Search<\/strong><br \/>\nTo perform a case-insensitive search for the word &quot;linux,&quot; use the -i option:<\/p>\n<pre><code>egrep -i 'linux' sample.txt<\/code><\/pre>\n<p>This will match both &quot;Linux&quot; and &quot;linux.&quot;<\/p>\n<p><strong>Example 3: Invert Match<\/strong><br \/>\nTo find lines that do not contain the word &quot;Linux,&quot; use the -v option:<\/p>\n<pre><code>egrep -v 'Linux' sample.txt<\/code><\/pre>\n<p>This will return any lines that don&#8217;t include &quot;Linux.&quot;<\/p>\n<p><strong>Example 4: Searching Multiple Files<\/strong><br \/>\nYou can search for a pattern in multiple files simultaneously. Let&#8217;s say you have two files, file1.txt and file2.txt, and you want to find lines containing the word &quot;example&quot; in both files:<\/p>\n<pre><code>egrep 'example' file1.txt file2.txt<\/code><\/pre>\n<p>This will display matching lines from both file1.txt and file2.txt.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nThe egrep command is a powerful tool for searching and manipulating text using regular expressions in a Linux environment. With its flexibility and numerous options, you can perform various text-processing tasks efficiently. By mastering egrep and regular expressions, you can streamline your text-related tasks and become more proficient at working with textual data in Linux.<\/p>\n<h2>Frequently Asked Questions (FAQs) About egrep Command in Linux<\/h2>\n<p>The egrep command is a versatile tool in Linux for searching and manipulating text using regular expressions. Here are some frequently asked questions (FAQs) related to egrep, along with examples to help you better understand its usage.<\/p>\n<p><strong>1. What is the difference between grep, egrep, and fgrep?<\/strong><\/p>\n<ul>\n<li><strong>grep:<\/strong> The basic grep command uses basic regular expressions (BRE) to perform text searches. It&#8217;s case-sensitive and doesn&#8217;t support some advanced regex features.<\/li>\n<li><strong>egrep:<\/strong> egrep (or grep -E) uses extended regular expressions (ERE) and offers more advanced regex features. It&#8217;s case-sensitive by default but can be made case-insensitive with the -i option.<\/li>\n<li><strong>fgrep:<\/strong> fgrep (or grep -F) searches for fixed strings, treating the search pattern as literal text without interpreting it as a regular expression. It&#8217;s suitable for plain text searches, and it doesn&#8217;t support regex features.<\/li>\n<\/ul>\n<p><strong>2. How can I count the number of lines that match a pattern using egrep?<\/strong><br \/>\nYou can use the -c option to count the number of lines that match a pattern.<br \/>\nExample:<\/p>\n<pre><code>egrep -c 'pattern' file.txt<\/code><\/pre>\n<p><strong>3. Is it possible to display line numbers along with matching lines in egrep?<\/strong><br \/>\nYes, you can display line numbers alongside matching lines using the -n option.<br \/>\nExample:<\/p>\n<pre><code>egrep -n 'pattern' file.txt<\/code><\/pre>\n<p><strong>4. How do I recursively search for a pattern in directories and subdirectories?<\/strong><br \/>\nTo search for a pattern in directories and their subdirectories, use the -r option.<\/p>\n<p><strong>Example:<\/strong><\/p>\n<pre><code>egrep -r 'pattern' \/path\/to\/directory\/<\/code><\/pre>\n<p><strong>5. How can I search for a pattern in multiple files?<\/strong><br \/>\nYou can search for a pattern in multiple files by specifying the filenames as arguments after the search pattern.<br \/>\n<strong>Example:<\/strong><\/p>\n<pre><code>egrep 'pattern' file1.txt file2.txt file3.txt<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Linux is renowned for its powerful command-line tools, which offer tremendous flexibility and control over various tasks. One of these essential tools is egrep. egrep is a versatile command that allows users to search and manipulate text using regular expressions. In this article, we will delve into the depths of egrep, exploring its capabilities, syntax, [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[230],"tags":[],"class_list":["post-18333","post","type-post","status-publish","format-standard","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>EGREP Command In Linux With Examples<\/title>\n<meta name=\"description\" content=\"egrep is a command-line utility that searches text using extended regular expressions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EGREP Command In Linux With Examples\" \/>\n<meta property=\"og:description\" content=\"egrep is a command-line utility that searches text using extended regular expressions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-21T04:48:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"EGREP Command In Linux With Examples\",\"datePublished\":\"2023-11-21T04:48:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/\"},\"wordCount\":793,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/\",\"name\":\"EGREP Command In Linux With Examples\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg\",\"datePublished\":\"2023-11-21T04:48:53+00:00\",\"description\":\"egrep is a command-line utility that searches text using extended regular expressions.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/linux\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"EGREP Command In Linux With Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EGREP Command In Linux With Examples","description":"egrep is a command-line utility that searches text using extended regular expressions.","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:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"EGREP Command In Linux With Examples","og_description":"egrep is a command-line utility that searches text using extended regular expressions.","og_url":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-21T04:48:53+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"EGREP Command In Linux With Examples","datePublished":"2023-11-21T04:48:53+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/"},"wordCount":793,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/","url":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/","name":"EGREP Command In Linux With Examples","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg","datePublished":"2023-11-21T04:48:53+00:00","description":"egrep is a command-line utility that searches text using extended regular expressions.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700542050801-13%20%281%29.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/egrep-command-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Linux","item":"https:\/\/prepbytes.com\/blog\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"EGREP Command In Linux With Examples"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18333","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=18333"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18333\/revisions"}],"predecessor-version":[{"id":18335,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18333\/revisions\/18335"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18333"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18333"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18333"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}