{"id":18512,"date":"2023-12-11T06:22:45","date_gmt":"2023-12-11T06:22:45","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18512"},"modified":"2023-12-11T06:22:45","modified_gmt":"2023-12-11T06:22:45","slug":"cat-command-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/","title":{"rendered":"cat command in linux with examples"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg\" alt=\"\" \/><br \/>\nIn the intricate tapestry of Linux command-line utilities, the cat command stands out as a seemingly simple yet incredibly powerful tool. An abbreviation for &quot;concatenate,&quot; cat offers users a versatile means of displaying, creating, and combining files. Its utility goes beyond its basic function, making it an indispensable component of the Linux user&#8217;s toolkit. This article embarks on a journey into the depths of the cat command, unraveling its fundamental syntax, exploring common options, and providing practical examples that showcase its diverse applications in text processing and file manipulation.<\/p>\n<h2>What is cat command in Linux?<\/h2>\n<p>In the vast landscape of Linux commands, few are as ubiquitous and powerful as the cat command. Short for &quot;concatenate,&quot; cat serves as a versatile tool for displaying, creating, and combining files. Its simplicity belies its potential, making it an essential component of any Linux user&#8217;s toolkit. This article will explore the intricacies of the cat command, from its fundamental syntax to practical examples, showcasing its diverse applications in the world of text processing and file manipulation.<\/p>\n<h3>Understanding the Basics of cat command in Linux:<\/h3>\n<p>The basic syntax of the cat command is as follows:<\/p>\n<pre><code>cat [OPTION]... [FILE]...<\/code><\/pre>\n<ul>\n<li>OPTION: Specifies various options that modify the behavior of cat.<\/li>\n<li>FILE: Refers to the input file(s) whose content will be displayed or manipulated.<\/li>\n<\/ul>\n<h3>Exploring Common Options of cat command in Linux<\/h3>\n<p>Below are some common options of cat command in Linux:<br \/>\n<strong>1. Concatenating and Displaying Files:<\/strong><br \/>\nThe primary use of cat is to display the content of one or more files. For example:<\/p>\n<pre><code>cat file1.txt<\/code><\/pre>\n<p>This displays the content of file1.txt in the terminal.<\/p>\n<p><strong>2. Concatenating Multiple Files:<\/strong><br \/>\ncat can concatenate multiple files into a single output. For instance:<\/p>\n<pre><code>cat file1.txt file2.txt &gt; combined.txt<\/code><\/pre>\n<p>This creates a new file, combined.txt, containing the content of both file1.txt and file2.txt.<\/p>\n<p><strong>3. Displaying Line Numbers:<\/strong><br \/>\nUse the -n option to display line numbers along with the content:<\/p>\n<pre><code>cat -n file.txt<\/code><\/pre>\n<p>This shows the content of file.txt with line numbers.<\/p>\n<p><strong>4. Creating or Appending to a File:<\/strong><br \/>\ncat can be used to create or append content to a file. For example:<\/p>\n<pre><code>cat &gt;&gt; newfile.txt<\/code><\/pre>\n<p>This allows you to input text interactively, and pressing Ctrl + D ends the input.<\/p>\n<p><strong>Practical Examples of cat command in Linux<\/strong><br \/>\nHere are some practical examples of cat command in Linux:<\/p>\n<p><strong>1. Concatenating Multiple Files:<\/strong><br \/>\nCombine the contents of three files into a single file:<\/p>\n<pre><code>cat file1.txt file2.txt file3.txt &gt; combined.txt<\/code><\/pre>\n<p><strong>2. Displaying File with Line Numbers:<\/strong><br \/>\nView the content of a file with line numbers:<\/p>\n<p>cat -n document.txt<\/p>\n<p><strong>3. Creating a New File with cat:<\/strong><br \/>\nCreate a new file and input text interactively:<\/p>\n<pre><code>cat &gt; newfile.txt<\/code><\/pre>\n<p>Type your text and press Ctrl + D to save.<\/p>\n<p><strong>4. Appending to an Existing File:<\/strong><br \/>\nAdd more content to an existing file:<\/p>\n<pre><code>cat &gt;&gt; existingfile.txt<\/code><\/pre>\n<p>Input text and press Ctrl + D to append.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nThe cat command, despite its apparent simplicity, is a powerhouse in the Linux command-line arsenal. Its ability to concatenate, display, and create files provides users with a versatile tool for text processing and file manipulation. From displaying the content of a single file to concatenating multiple files and creating new ones, cat proves its utility in various scenarios.<\/p>\n<p>As users master the examples provided in this guide and explore the additional nuances of the cat command, they will find themselves equipped with a valuable skillset for efficient text processing and file manipulation in the Linux environment. The journey of discovery with cat extends beyond the basics, allowing users to harness its capabilities creatively and enhance their command-line proficiency.<\/p>\n<h2>FAQs related to cat Command in Linux<\/h2>\n<p>Frequently Asked Questions (FAQs): related to cat command in Linux:<\/p>\n<p><strong>Q1: Can the cat command display non-text files, such as binary files?<\/strong><br \/>\nYes, cat can display the content of non-text files. However, the output may not be human-readable for binary files.<\/p>\n<p><strong>Q2: How does the -n option work in the cat command?<\/strong><br \/>\nThe -n option adds line numbers to the output, making it helpful for referencing specific lines in a file.<\/p>\n<p><strong>Q3: Can cat be used to copy the content of a file?<\/strong><br \/>\nWhile cat can display the content of a file, a more appropriate tool for copying files is the cp command. For example:<\/p>\n<pre><code>cp source.txt destination.txt<\/code><\/pre>\n<p><strong>Q4: Is it possible to concatenate files without creating a new file using the cat command?<\/strong><br \/>\nYes, you can use a pipe (|) to concatenate files without creating a new file. For example:<\/p>\n<pre><code>cat file1.txt file2.txt | less<\/code><\/pre>\n<p>This displays the concatenated content using the less pager.<\/p>\n<p><strong>Q5: What happens if I use cat without specifying any file?<\/strong><br \/>\nIf no file is specified, cat reads from standard input. This allows you to concatenate or display input provided interactively.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the intricate tapestry of Linux command-line utilities, the cat command stands out as a seemingly simple yet incredibly powerful tool. An abbreviation for &quot;concatenate,&quot; cat offers users a versatile means of displaying, creating, and combining files. Its utility goes beyond its basic function, making it an indispensable component of the Linux user&#8217;s toolkit. This [&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-18512","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>cat command in linux with examples<\/title>\n<meta name=\"description\" content=\"Short for \u201cconcatenate,\u201d cat serves as a versatile tool for displaying, creating, and combining files.\" \/>\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\/cat-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=\"cat command in linux with examples\" \/>\n<meta property=\"og:description\" content=\"Short for \u201cconcatenate,\u201d cat serves as a versatile tool for displaying, creating, and combining files.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/cat-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-12-11T06:22:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.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\/cat-command-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"cat command in linux with examples\",\"datePublished\":\"2023-12-11T06:22:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/\"},\"wordCount\":759,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/\",\"name\":\"cat command in linux with examples\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg\",\"datePublished\":\"2023-12-11T06:22:45+00:00\",\"description\":\"Short for \u201cconcatenate,\u201d cat serves as a versatile tool for displaying, creating, and combining files.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/cat-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\":\"cat 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":"cat command in linux with examples","description":"Short for \u201cconcatenate,\u201d cat serves as a versatile tool for displaying, creating, and combining files.","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\/cat-command-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"cat command in linux with examples","og_description":"Short for \u201cconcatenate,\u201d cat serves as a versatile tool for displaying, creating, and combining files.","og_url":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-12-11T06:22:45+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.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\/cat-command-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"cat command in linux with examples","datePublished":"2023-12-11T06:22:45+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/"},"wordCount":759,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/","url":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/","name":"cat command in linux with examples","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg","datePublished":"2023-12-11T06:22:45+00:00","description":"Short for \u201cconcatenate,\u201d cat serves as a versatile tool for displaying, creating, and combining files.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/cat-command-in-linux-with-examples\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1702275748525-cat%20command%20in%20linux%20with%20examples%20.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/cat-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":"cat 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\/18512","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=18512"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18512\/revisions"}],"predecessor-version":[{"id":18513,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18512\/revisions\/18513"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18512"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18512"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18512"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}