{"id":11762,"date":"2019-08-27T19:39:52","date_gmt":"2019-08-27T19:39:52","guid":{"rendered":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/"},"modified":"2020-06-13T01:30:24","modified_gmt":"2020-06-13T01:30:24","slug":"how-to-append-to-end-of-a-file-in-linux","status":"publish","type":"post","link":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/","title":{"rendered":"How to Append to End of a File in Linux"},"content":{"rendered":"<div>\n<p>In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename. Using the &gt;&gt; character you can output result of any command to a text file.<\/p>\n<p>Other ways this can be achieved, is using Linux tools like tee, awk, and sed.<\/p>\n<h2><span id=\"Redirect_output_of_command_or_data_to_end_of_file\" class=\"ez-toc-section\">Redirect output of command or data to end of file<\/span><\/h2>\n<p>Every Unix-based operating system has a concept of \u201ca default place for output to go\u201d. Everyone calls it \u201cstandard output\u201d, or \u201cstdout\u201d, pronounced standard out. Your shell (probably bash or zsh) is constantly watching that default output place. When your shell sees new output there, it prints it out on the screen so that you can see it.<\/p>\n<p>We can redirect that output to a file using the &gt;&gt; operator.<\/p>\n<p>The procedure is as follows:<\/p>\n<p>Append text to end of file using <em>echo<\/em> command:<\/p>\n<pre>echo 'sample text line' &gt;&gt; filename.txt<\/pre>\n<p>Append command output to end of file:<\/p>\n<pre>command &gt;&gt; filename.txt<\/pre>\n<h2><span id=\"Adding_lines_to_end_of_file\" class=\"ez-toc-section\">Adding lines to end of file<\/span><\/h2>\n<p>We can add text lines using this redirect character &gt;&gt; or we can write data and command output to a text file. Using this method the file will be created if it doesn&#8217;t exist.<\/p>\n<p>For example:<\/p>\n<pre>$ echo \"sample line\" &gt;&gt; test.txt\r\n$ cat test.txt \r\nsample line\r\n\r\n$ echo \"sample line 2\" &gt;&gt; test.txt\r\n$ cat test.txt \r\nsample line\r\nsample line 2\r\n<\/pre>\n<h2><span id=\"Adding_command_data_output_result_to_end_of_file\" class=\"ez-toc-section\">Adding command data output result to end of file<\/span><\/h2>\n<p>You can also add data or run command and append output to the desired file. In this example, we will use date for appending the <a href=\"https:\/\/linoxide.com\/linux-command\/set-time-date-timezone-ubuntu-linux\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">current date<\/a> to a file, <a href=\"https:\/\/linoxide.com\/linux-command\/uname-command\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">uname command<\/a> &#8211; which will print out kernel version of the Linux system we are using and lastly <em>ls<\/em> command which outputs the current directory structure and file list.<br \/>\nYou can use any command that can output it&#8217;s result to a terminal, which means almost all of the command line tools in Linux.<\/p>\n<pre>$ date &gt;&gt; test.txt \r\n$ cat test.txt \r\nsample line\r\nsample line 2\r\nTue Jun 25 20:28:51 UTC 2019\r\n\r\n\r\n$ uname -r &gt;&gt; test.txt \r\n$ cat test.txt \r\nsample line\r\nsample line 2\r\nTue Jun 25 20:28:51 UTC 2019\r\n3.13.0-170-generic\r\n\r\n\r\n$ ls &gt;&gt; test.txt \r\n$ cat test.txt \r\nsample line\r\nsample line 2\r\nTue Jun 25 20:28:51 UTC 2019\r\n3.13.0-170-generic\r\ntest.txt\r\n<\/pre>\n<h2><span id=\"Alternative_methods\" class=\"ez-toc-section\">Alternative methods<\/span><\/h2>\n<p>Lets see how to append using tee, awk and sed Linux utility.<\/p>\n<h3><span id=\"Using_tee_command_line_tool\" class=\"ez-toc-section\">Using tee command line tool<\/span><\/h3>\n<p><a href=\"https:\/\/linoxide.com\/linux-how-to\/linux-tee-command-examples\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Tee command<\/a> reads the standard input and writes it to both the standard output and one or more files. The command is named after the T-splitter used in plumbing. It breaks the output of a program so that it can be both displayed and saved in a file.<\/p>\n<pre>$ tee -a test.txt &lt;&lt;&lt; \"appended line of text\"\r\n<a class=\"__cf_email__\" href=\"http:\/\/linoxide.com\/cdn-cgi\/l\/email-protection\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" data-cfemail=\"ff899e988d9e918bbf8a9d8a918b8ad28b8d8a8c8b86d2c9cb\">[email\u00a0protected]<\/a>:~$ cat test.txt \r\nappended line of text\r\n<\/pre>\n<h3><span id=\"Using_awk_command_line_tool\" class=\"ez-toc-section\">Using awk command line tool<\/span><\/h3>\n<p>Awk\u00a0is a utility that enables a programmer to write tiny but effective programs in the form of statements that define text patterns that are to be searched for in each line of a document and the action that is to be taken when a match is found within a line. <em>Awk<\/em> is mostly used for pattern scanning and processing.<\/p>\n<pre>$ awk 'BEGIN{ printf \"another text line appended\" &gt;&gt; \"test.txt\"  }'\r\n<a class=\"__cf_email__\" href=\"http:\/\/linoxide.com\/cdn-cgi\/l\/email-protection\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" data-cfemail=\"483e292f3a29263c083d2a3d263c3d653c3a3d3b3c31657e7c\">[email\u00a0protected]<\/a>:~$ cat test.txt \r\nanother text line appended\r\n<\/pre>\n<h3><span id=\"Using_sed_command_line_tool\" class=\"ez-toc-section\">Using sed command line tool<\/span><\/h3>\n<p><a href=\"https:\/\/linoxide.com\/linux-command\/sed-command\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Sed command<\/a> in Linux stands for stream editor and it can perform lots of functions on a file like searching, find and replace, insertion or deletion. By using <em>sed<\/em> you can edit files even without opening it, which is a much quicker way to find and replace something in the file.<\/p>\n<pre>$ sed -i '$a yet another text line' test.txt\r\n<a class=\"__cf_email__\" href=\"http:\/\/linoxide.com\/cdn-cgi\/l\/email-protection\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" data-cfemail=\"ee988f899c8f809aae9b8c9b809a9bc39a9c9b9d9a97c3d8da\">[email\u00a0protected]<\/a>:~$ cat test.txt \r\nyet another text line\r\n<\/pre>\n<h2><span id=\"Append_multiple_lines_to_a_file\" class=\"ez-toc-section\">Append multiple lines to a file<\/span><\/h2>\n<p>There are several ways to append multiple lines to a file at once.<br \/>\nYou can, of course, add lines one by one:<\/p>\n<pre>$ echo \"line 1\" &gt;&gt; result.txt\r\n$ echo \"line 2\" &gt;&gt; result.txt\r\n<\/pre>\n<p>Next variant is to enter new line in terminal:<\/p>\n<pre>echo \"line 1\r\nline 2\r\nline 3\" &gt;&gt; result.txt\r\n<\/pre>\n<p>Another way is to open a file and write lines until you type EOT:<\/p>\n<pre>$ cat &lt;&lt;EOT &gt;&gt; result.txt\r\nline 1\r\nline 2\r\nEOT<\/pre>\n<h2><span id=\"Conclusion\" class=\"ez-toc-section\">Conclusion<\/span><\/h2>\n<p>Although there are multiple ways to append the text lines or data and command output to a file, we saw that the easiest way is using &gt;&gt; redirect character. There are ways to append the text to an end of a specific line number in a file, or in the middle of a line using regex, but we will going to cover that in some other article.<\/p>\n<p>Let us know what method to append to the end of the file you think is best down in the comments section.<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename. Using the &gt;&gt; character you can output result of any command to a text [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":11763,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26],"tags":[872,407],"class_list":["post-11762","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-append","tag-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Append to End of a File in Linux - Techolac<\/title>\n<meta name=\"description\" content=\"In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename.\" \/>\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.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Append to End of a File in Linux - Techolac\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Techolac - Computer Technology News\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-27T19:39:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-06-13T01:30:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png\" \/>\n\t<meta property=\"og:image:width\" content=\"713\" \/>\n\t<meta property=\"og:image:height\" content=\"341\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Editorial Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Staff\" \/>\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:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/\"},\"author\":{\"name\":\"Editorial Staff\",\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"headline\":\"How to Append to End of a File in Linux\",\"datePublished\":\"2019-08-27T19:39:52+00:00\",\"dateModified\":\"2020-06-13T01:30:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/\"},\"wordCount\":652,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"image\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png\",\"keywords\":[\"Append()\",\"Linux\"],\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/\",\"url\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/\",\"name\":\"How to Append to End of a File in Linux - Techolac\",\"isPartOf\":{\"@id\":\"https:\/\/www.techolac.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png\",\"datePublished\":\"2019-08-27T19:39:52+00:00\",\"dateModified\":\"2020-06-13T01:30:24+00:00\",\"description\":\"In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage\",\"url\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png\",\"contentUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png\",\"width\":713,\"height\":341},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.techolac.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Append to End of a File in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.techolac.com\/#website\",\"url\":\"https:\/\/www.techolac.com\/\",\"name\":\"Techolac - Computer Technology News\",\"description\":\"A weblog on emerging technology and internet news, reviews, tips for a broad range of computing technologies.\",\"publisher\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.techolac.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\",\"name\":\"Editorial Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g\",\"caption\":\"Editorial Staff\"},\"logo\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/image\/\"},\"url\":\"https:\/\/www.techolac.com\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Append to End of a File in Linux - Techolac","description":"In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename.","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.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Append to End of a File in Linux - Techolac","og_description":"In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename.","og_url":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/","og_site_name":"Techolac - Computer Technology News","article_published_time":"2019-08-27T19:39:52+00:00","article_modified_time":"2020-06-13T01:30:24+00:00","og_image":[{"width":713,"height":341,"url":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png","type":"image\/png"}],"author":"Editorial Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editorial Staff","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#article","isPartOf":{"@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/"},"author":{"name":"Editorial Staff","@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"headline":"How to Append to End of a File in Linux","datePublished":"2019-08-27T19:39:52+00:00","dateModified":"2020-06-13T01:30:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/"},"wordCount":652,"commentCount":0,"publisher":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"image":{"@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png","keywords":["Append()","Linux"],"articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/","url":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/","name":"How to Append to End of a File in Linux - Techolac","isPartOf":{"@id":"https:\/\/www.techolac.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png","datePublished":"2019-08-27T19:39:52+00:00","dateModified":"2020-06-13T01:30:24+00:00","description":"In this tutorial, we learn different ways to append text to the end of a file in Linux. You can achieve this using several methods in Linux, but the simplest one is to redirect the command output to the desired filename.","breadcrumb":{"@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#primaryimage","url":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png","contentUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/append-end-file-linux.png","width":713,"height":341},{"@type":"BreadcrumbList","@id":"https:\/\/www.techolac.com\/linux\/how-to-append-to-end-of-a-file-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.techolac.com\/"},{"@type":"ListItem","position":2,"name":"How to Append to End of a File in Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.techolac.com\/#website","url":"https:\/\/www.techolac.com\/","name":"Techolac - Computer Technology News","description":"A weblog on emerging technology and internet news, reviews, tips for a broad range of computing technologies.","publisher":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.techolac.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b","name":"Editorial Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techolac.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g","caption":"Editorial Staff"},"logo":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/image\/"},"url":"https:\/\/www.techolac.com\/author\/admin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts\/11762","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/comments?post=11762"}],"version-history":[{"count":1,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts\/11762\/revisions"}],"predecessor-version":[{"id":22119,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts\/11762\/revisions\/22119"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/media\/11763"}],"wp:attachment":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/media?parent=11762"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/categories?post=11762"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/tags?post=11762"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}