{"id":18406,"date":"2023-11-30T09:07:55","date_gmt":"2023-11-30T09:07:55","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18406"},"modified":"2023-11-30T09:07:55","modified_gmt":"2023-11-30T09:07:55","slug":"echo-command-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/","title":{"rendered":"echo command in linux with examples"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg\" alt=\"\" \/><br \/>\nThe echo command is a versatile and fundamental tool in the Linux command-line environment. Its primary purpose is to display text on the terminal. Whether you&#8217;re a beginner or an experienced user, understanding the ins and outs of the echo command is essential for effective shell scripting and day-to-day tasks.<\/p>\n<h2>What is echo command in Linux?<\/h2>\n<p>In Linux, the echo command is used to display messages or text to the terminal or to redirect it to a file. It is a simple command that takes the text or variables as arguments and prints them to the standard output.<\/p>\n<h3>Basic Syntax of echo command in linux<\/h3>\n<p>The basic syntax of the echo command is straightforward:<\/p>\n<pre><code>echo [OPTIONS] [STRING]<\/code><\/pre>\n<p>Here, [OPTIONS] can include various modifiers, and [STRING] represents the text or variables you want to display.<\/p>\n<p><strong>Printing Text<\/strong><br \/>\nThe most straightforward use of echo is to display text on the terminal. For example:<\/p>\n<pre><code>echo \"Hello, Linux!\"<\/code><\/pre>\n<p>This command will output &quot;Hello, Linux!&quot; to the terminal.<\/p>\n<p><strong>Escape Characters<\/strong><br \/>\nThe echo command supports escape characters to format the output. Some commonly used escape characters include:<\/p>\n<pre><code>\\n: Newline\n\\t: Tab\n\\b: Backspace<\/code><\/pre>\n<p>For example:<\/p>\n<pre><code>echo -e \"Line 1\\nLine 2\"<\/code><\/pre>\n<p>The -e option enables the interpretation of escape characters, resulting in a two-line output.<\/p>\n<p><strong>Variables and Expressions<\/strong><br \/>\nYou can use variables and expressions with echo to display dynamic content. For instance:<\/p>\n<pre><code>name=\"User\"\necho \"Hello, $name!\"<\/code><\/pre>\n<p>This will output &quot;Hello, User!&quot; by substituting the value of the variable name into the string.<\/p>\n<p><strong>Command Substitution<\/strong><br \/>\nThe echo command allows you to capture the output of another command and display it. This is known as command substitution. For example:<\/p>\n<pre><code>echo \"Today is $(date)\"<\/code><\/pre>\n<p>Here, the $(date) command is executed, and its output (current date and time) is displayed within the larger string.<\/p>\n<p><strong>Redirecting Output<\/strong><br \/>\nYou can redirect the output of echo to a file using the &gt; or &gt;&gt; operators. For example:<\/p>\n<pre><code>echo \"Save this line to a file\" &gt; output.txt<\/code><\/pre>\n<p>This will create a file named output.txt with the specified text. The &gt; operator overwrites the file if it already exists, while &gt;&gt; appends to the file.<\/p>\n<p><strong>Controlling Spaces<\/strong><br \/>\nThe -n option prevents the addition of a newline character at the end of the output. This is useful when you want to concatenate multiple echo statements on the same line:<\/p>\n<pre><code>echo -n \"This is a \"\necho \"single line.\"<\/code><\/pre>\n<p>This will result in &quot;This is a single line.&quot; being displayed on the terminal.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nThe echo command is a simple yet powerful tool for displaying text in the Linux terminal. Whether you&#8217;re printing static messages, dynamic content with variables, or the output of other commands, echo is a go-to command for manipulating and presenting information. By mastering the echo command, you enhance your ability to work efficiently in the Linux command-line environment and streamline your scripting tasks.<\/p>\n<h2>FAQs related to echo command in linux with examples<\/h2>\n<p>Here are some of the FAQs related to echo command in linux with examples:<\/p>\n<p><strong>1. What is the primary purpose of the echo command in Linux?<\/strong><br \/>\nThe echo command is used to display text on the terminal.<\/p>\n<p><strong>2. How can I display a message with line breaks using echo?<\/strong><br \/>\nUse the -e option with escape characters, such as \\n for a newline. For example: echo -e &quot;Line 1\\nLine 2&quot;.<\/p>\n<p><strong>3. Can I use variables with the echo command?<\/strong><br \/>\nYes, variables can be used with echo to display dynamic content. For example: name=&quot;User&quot;; echo &quot;Hello, $name!&quot;.<\/p>\n<p><strong>4. What is command substitution in the context of the echo command?<\/strong><br \/>\nCommand substitution allows you to capture the output of another command and display it using echo. For example: echo &quot;Today is $(date)&quot;.<\/p>\n<p><strong>5. How can I redirect the output of echo to a file?<\/strong><br \/>\nYou can use the &gt; or &gt;&gt; operators for redirection. For example: echo &quot;Text&quot; &gt; output.txt to overwrite or echo &quot;Text&quot; &gt;&gt; output.txt to append.<\/p>\n<p><strong>6. What does the -n option do in the echo command?<\/strong><br \/>\nThe -n option prevents the addition of a newline character at the end of the output. It is useful for concatenating multiple echo statements on the same line.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The echo command is a versatile and fundamental tool in the Linux command-line environment. Its primary purpose is to display text on the terminal. Whether you&#8217;re a beginner or an experienced user, understanding the ins and outs of the echo command is essential for effective shell scripting and day-to-day tasks. What is echo command in [&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-18406","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>echo command in linux with examples<\/title>\n<meta name=\"description\" content=\"In Linux, the echo command is used to display messages or text to the terminal or to redirect it to a file.\" \/>\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\/echo-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=\"echo command in linux with examples\" \/>\n<meta property=\"og:description\" content=\"In Linux, the echo command is used to display messages or text to the terminal or to redirect it to a file.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/echo-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-30T09:07:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%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\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"echo command in linux with examples\",\"datePublished\":\"2023-11-30T09:07:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/\"},\"wordCount\":667,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/\",\"name\":\"echo command in linux with examples\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg\",\"datePublished\":\"2023-11-30T09:07:55+00:00\",\"description\":\"In Linux, the echo command is used to display messages or text to the terminal or to redirect it to a file.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/echo-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\":\"echo 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":"echo command in linux with examples","description":"In Linux, the echo command is used to display messages or text to the terminal or to redirect it to a file.","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\/echo-command-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"echo command in linux with examples","og_description":"In Linux, the echo command is used to display messages or text to the terminal or to redirect it to a file.","og_url":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-30T09:07:55+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"echo command in linux with examples","datePublished":"2023-11-30T09:07:55+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/"},"wordCount":667,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/","url":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/","name":"echo command in linux with examples","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg","datePublished":"2023-11-30T09:07:55+00:00","description":"In Linux, the echo command is used to display messages or text to the terminal or to redirect it to a file.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/echo-command-in-linux-with-examples\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335259430-Echo%20command%20in%20%20linux%20with%20examples%20.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/echo-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":"echo 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\/18406","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=18406"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18406\/revisions"}],"predecessor-version":[{"id":18458,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18406\/revisions\/18458"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18406"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18406"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18406"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}