{"id":6631,"date":"2024-01-08T09:37:44","date_gmt":"2024-01-08T16:37:44","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6631"},"modified":"2024-01-08T09:38:30","modified_gmt":"2024-01-08T16:38:30","slug":"install-less-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-less-command-linux\/","title":{"rendered":"Linux Guide | Installing and Using &#8216;Less&#8217; Made Easy"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/ioflood.com\/blog\/wp-content\/uploads\/2024\/01\/Visual-depiction-of-a-Linux-terminal-with-the-process-of-installing-the-less-command-for-viewing-text-files-in-a-scrollable-manner-300x300.jpg\" alt=\"Visual depiction of a Linux terminal with the process of installing the less command for viewing text files in a scrollable manner\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you finding it challenging to view large files in Linux? Well, the &#8216;less&#8217; command can be your savior, enabling you to navigate through them with ease. For beginners and even some seasoned users, installing and using Linux commands can seem a bit daunting. However, it&#8217;s accessible on most package management systems, simplifying the installation once you understand the process.<\/p>\n<p><strong>In this guide, we will navigate the process of installing the &#8216;less&#8217; command on your Linux system.<\/strong> We will provide you with installation instructions for APT-based distributions like Debian and Ubuntu, as well as YUM-based distributions like CentOS and AlmaLinux. We&#8217;ll delve into how to compile &#8216;less&#8217; from the source, install a specific version, and finally, we will show you how to use the &#8216;less&#8217; command and ascertain that the correctly installed version is in use.<\/p>\n<p>Let&#8217;s get started with the step-by-step &#8216;less&#8217; installation on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;less&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  The &#8216;less&#8217; command is typically pre-installed on most Linux distributions. However, if it&#8217;s not, you can install it on Debian-based distributions like Ubuntu with the command <code>sudo apt-get install less<\/code>. For RPM-based distributions like CentOS, you would use the command <code>sudo yum install less<\/code>.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\"># For Debian-based distributions like Ubuntu\nsudo apt-get install less\n\n# For RPM-based distributions like CentOS\nsudo yum install less\n\n# Output:\n# 'less is already the newest version (487-0.1).' or 'Package less-487-0.1.el7.x86_64 already installed and latest version'\n<\/code><\/pre>\n<p>This is the basic way to install the &#8216;less&#8217; command in Linux. But there&#8217;s much more to learn about installing and using &#8216;less&#8217;. Continue reading for more detailed information, advanced installation options, and usage scenarios.<\/p>\n<h2>Understanding the &#8216;Less&#8217; Command in Linux<\/h2>\n<p>The &#8216;less&#8217; command in Linux is a powerful tool that allows you to view and navigate through the contents of a file. It is particularly useful when dealing with large files as it does not need to read the entire file before starting, making it faster and more efficient than similar commands.<\/p>\n<p>One of the main reasons you&#8217;d want to use the &#8216;less&#8217; command is its ability to scroll both forwards and backwards in the file. It also supports searching for strings and regular expressions, making it a versatile tool for file viewing and navigation in Linux.<\/p>\n<h3>Installing &#8216;Less&#8217; with APT<\/h3>\n<p>For Debian-based distributions like Ubuntu, the Advanced Package Tool (APT) is used for handling packages. To install the &#8216;less&#8217; command with APT, you can use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt update\nsudo apt install less\n\n# Output:\n# 'less is already the newest version (487-0.1).'\n<\/code><\/pre>\n<p>In this code block, the first command updates the package lists for upgrades and new package installations. The second command installs the &#8216;less&#8217; package. If &#8216;less&#8217; is already installed, the output will indicate that &#8216;less&#8217; is already the newest version.<\/p>\n<h3>Installing &#8216;Less&#8217; with YUM<\/h3>\n<p>For RPM-based distributions like CentOS, the Yellowdog Updater, Modified (YUM) is used. To install the &#8216;less&#8217; command with YUM, you can use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum check-update\nsudo yum install less\n\n# Output:\n# 'Package less-487-0.1.el7.x86_64 already installed and latest version'\n<\/code><\/pre>\n<p>In this code block, the first command checks for updates in the repositories. The second command installs the &#8216;less&#8217; package. If &#8216;less&#8217; is already installed, the output will indicate that &#8216;less&#8217; is already installed and is the latest version.<\/p>\n<h2>Installing &#8216;Less&#8217; from Source Code<\/h2>\n<p>While package managers make installation a breeze, sometimes you may need to install &#8216;less&#8217; from its source code. This could be due to the need for a specific version not available in the repositories, or the desire to modify the source code. Here&#8217;s how you can do it:<\/p>\n<p>First, download the source code. You can get it from the official &#8216;less&#8217; website. Then, extract the tarball, navigate into the extracted directory, and compile the source code using <code>make<\/code>.<\/p>\n<pre><code class=\"language-bash line-numbers\">wget https:\/\/greenwoodsoftware.com\/less\/less-551.tar.gz\n\n# Extract the tarball\n\ntar -xvf less-551.tar.gz\n\n# Navigate into the directory\n\ncd less-551\n\n# Compile the source code\n\nmake\n\n# Output:\n# 'less is compiled successfully.'\n<\/code><\/pre>\n<h2>Installing Specific Versions of &#8216;Less&#8217;<\/h2>\n<h3>From Source<\/h3>\n<p>To install a specific version from source, you just need to download the tarball for that version from the official &#8216;less&#8217; website, then follow the same steps as above.<\/p>\n<h3>Using Package Managers<\/h3>\n<h4>APT<\/h4>\n<p>On Debian-based distributions, you can list all available versions using the <code>apt-cache madison<\/code> command, then install a specific version using <code>apt-get install less=[version]<\/code>.<\/p>\n<pre><code class=\"language-bash line-numbers\">apt-cache madison less\n\n# Install a specific version\n\nsudo apt-get install less=487-0.1\n\n# Output:\n# 'less version 487-0.1 installed successfully.'\n<\/code><\/pre>\n<h4>YUM<\/h4>\n<p>On RPM-based distributions, you can list all available versions using the <code>yum --showduplicates list less<\/code> command, then install a specific version using <code>yum install less-[version]<\/code>.<\/p>\n<pre><code class=\"language-bash line-numbers\">yum --showduplicates list less\n\n# Install a specific version\n\nsudo yum install less-487-0.1.el7\n\n# Output:\n# 'less version 487-0.1.el7 installed successfully.'\n<\/code><\/pre>\n<h3>Version Comparison<\/h3>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Changes\/Features<\/th>\n<th>Compatibility<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>487<\/td>\n<td>Initial release<\/td>\n<td>All Linux<\/td>\n<\/tr>\n<tr>\n<td>551<\/td>\n<td>Bug fixes<\/td>\n<td>All Linux<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Basic Usage of &#8216;Less&#8217; Command<\/h2>\n<h3>Using &#8216;Less&#8217;<\/h3>\n<p>To use &#8216;less&#8217;, simply type <code>less<\/code> followed by the filename. For example, <code>less myfile.txt<\/code> will open <code>myfile.txt<\/code> in &#8216;less&#8217;.<\/p>\n<pre><code class=\"language-bash line-numbers\">less myfile.txt\n\n# Output:\n# 'Contents of myfile.txt displayed here.'\n<\/code><\/pre>\n<h3>Verifying &#8216;Less&#8217; Installation<\/h3>\n<p>You can verify that &#8216;less&#8217; is installed correctly by checking its version. Use the command <code>less -V<\/code> to display the version of &#8216;less&#8217; installed on your system.<\/p>\n<pre><code class=\"language-bash line-numbers\">less -V\n\n# Output:\n# 'less 487 (POSIX regular expressions)'\n<\/code><\/pre>\n<p>This will display the version of &#8216;less&#8217; installed on your system, confirming that the installation was successful.<\/p>\n<h2>Exploring Alternative Commands in Linux<\/h2>\n<p>While the &#8216;less&#8217; command is a powerful tool for viewing and navigating files in Linux, it&#8217;s not the only one. Let&#8217;s explore some alternative commands that you can use for file viewing in Linux.<\/p>\n<h3>The &#8216;More&#8217; Command<\/h3>\n<p>The &#8216;more&#8217; command is a basic file viewer in Linux. It&#8217;s simpler than &#8216;less&#8217;, and it&#8217;s often pre-installed on many Linux distributions. However, unlike &#8216;less&#8217;, &#8216;more&#8217; only allows forward navigation in the file.<\/p>\n<p>To use &#8216;more&#8217;, you can type <code>more<\/code> followed by the filename. For example, <code>more myfile.txt<\/code> will display the contents of <code>myfile.txt<\/code>.<\/p>\n<pre><code class=\"language-bash line-numbers\">more myfile.txt\n\n# Output:\n# 'Contents of myfile.txt displayed here.'\n<\/code><\/pre>\n<p>One disadvantage of &#8216;more&#8217; is that it reads the entire file before displaying it, which can be slow for large files. On the other hand, &#8216;less&#8217; starts displaying the file immediately, making it faster and more efficient for large files.<\/p>\n<h3>The &#8216;Cat&#8217; Command<\/h3>\n<p>The &#8216;cat&#8217; command is another basic file viewer in Linux. It&#8217;s even simpler than &#8216;more&#8217; and &#8216;less&#8217;, and it&#8217;s also often pre-installed on many Linux distributions. The &#8216;cat&#8217; command reads files sequentially, writing them to the standard output.<\/p>\n<p>To use &#8216;cat&#8217;, you can type <code>cat<\/code> followed by the filename. For example, <code>cat myfile.txt<\/code> will display the contents of <code>myfile.txt<\/code>.<\/p>\n<pre><code class=\"language-bash line-numbers\">cat myfile.txt\n\n# Output:\n# 'Contents of myfile.txt displayed here.'\n<\/code><\/pre>\n<p>One disadvantage of &#8216;cat&#8217; is that it doesn&#8217;t support file navigation. It simply displays the entire file content at once, which can be overwhelming for large files. On the other hand, both &#8216;more&#8217; and &#8216;less&#8217; support file navigation, making them more suitable for large files.<\/p>\n<table>\n<thead>\n<tr>\n<th>Command<\/th>\n<th>Navigation<\/th>\n<th>Speed<\/th>\n<th>Complexity<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Less<\/td>\n<td>Forward and backward<\/td>\n<td>Fast<\/td>\n<td>Moderate<\/td>\n<\/tr>\n<tr>\n<td>More<\/td>\n<td>Forward only<\/td>\n<td>Slow for large files<\/td>\n<td>Simple<\/td>\n<\/tr>\n<tr>\n<td>Cat<\/td>\n<td>None<\/td>\n<td>Fast for small files, slow for large files<\/td>\n<td>Very simple<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>In conclusion, while &#8216;less&#8217; is a powerful command for file viewing in Linux, &#8216;more&#8217; and &#8216;cat&#8217; can be useful alternatives, depending on your needs. If you need to navigate both forwards and backwards in the file or if you&#8217;re dealing with large files, &#8216;less&#8217; is the way to go. If you&#8217;re dealing with small files and don&#8217;t need file navigation, &#8216;more&#8217; and &#8216;cat&#8217; can be sufficient.<\/p>\n<h2>Troubleshooting the &#8216;Less&#8217; Command in Linux<\/h2>\n<p>While the &#8216;less&#8217; command is generally straightforward to use, you might occasionally encounter issues. Let&#8217;s discuss some common problems and their solutions.<\/p>\n<h3>&#8216;Less&#8217; Command Not Found<\/h3>\n<p>If you encounter the error &#8216;less: command not found&#8217;, it means that the &#8216;less&#8217; package is not installed on your system. To resolve this, you can install &#8216;less&#8217; using your package manager, as we discussed earlier.<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt install less\n\n# Output:\n# 'less is already the newest version (487-0.1).'\n<\/code><\/pre>\n<p>This command installs the &#8216;less&#8217; package on Debian-based distributions. If &#8216;less&#8217; is already installed, the output will indicate that &#8216;less&#8217; is already the newest version.<\/p>\n<h3>Can&#8217;t Scroll Upwards in &#8216;Less&#8217;<\/h3>\n<p>If you can&#8217;t scroll upwards when viewing a file with &#8216;less&#8217;, it&#8217;s likely that you&#8217;re actually using &#8216;more&#8217;. While &#8216;less&#8217; allows you to navigate both forwards and backwards in a file, &#8216;more&#8217; only allows forward navigation. To resolve this, ensure that you&#8217;re using &#8216;less&#8217; and not &#8216;more&#8217;.<\/p>\n<pre><code class=\"language-bash line-numbers\">less myfile.txt\n\n# Output:\n# 'Contents of myfile.txt displayed here.'\n<\/code><\/pre>\n<p>This command opens &#8216;myfile.txt&#8217; with &#8216;less&#8217;, allowing you to navigate both forwards and backwards in the file.<\/p>\n<h3>&#8216;Less&#8217; Doesn&#8217;t Display File Contents<\/h3>\n<p>If &#8216;less&#8217; doesn&#8217;t display the contents of a file, it could be because the file is empty, or the file does not exist. You can check if a file exists and its size using the &#8216;ls&#8217; command.<\/p>\n<pre><code class=\"language-bash line-numbers\">ls -lh myfile.txt\n\n# Output:\n# '-rw-r--r-- 1 user group 0 Jan 1 00:00 myfile.txt'\n<\/code><\/pre>\n<p>This command displays the details of &#8216;myfile.txt&#8217;, including its size. If the size is 0, it means that the file is empty. If &#8216;myfile.txt&#8217; does not exist, &#8216;ls&#8217; will display an error message.<\/p>\n<p>In conclusion, while &#8216;less&#8217; is a powerful and reliable command, you might occasionally encounter issues. However, these problems are generally easy to troubleshoot and resolve.<\/p>\n<h2>Understanding File Viewing and Navigation in Linux<\/h2>\n<p>In Linux, file viewing and navigation are essential tasks for users and administrators alike. Whether you&#8217;re a developer looking for a specific line of code, a system administrator monitoring log files, or a data analyst sifting through data, being able to efficiently view and navigate files can significantly improve your productivity.<\/p>\n<h3>The Importance of the &#8216;Less&#8217; Command<\/h3>\n<p>The &#8216;less&#8217; command is a powerful tool in the Linux arsenal for file viewing and navigation. It allows you to open a file and navigate through its content using intuitive commands. You can scroll up and down, search for patterns, and even view the file in reverse. This makes &#8216;less&#8217; an invaluable tool for viewing large files where finding specific content can be like finding a needle in a haystack.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Open a large log file with less\nless \/var\/log\/syslog\n\n# Output:\n# 'Contents of \/var\/log\/syslog displayed here.'\n<\/code><\/pre>\n<p>In this example, we&#8217;re opening a large system log file with &#8216;less&#8217;. This allows us to navigate through the file using simple commands, making it easy to find specific entries or patterns.<\/p>\n<h3>File Navigation Commands in &#8216;Less&#8217;<\/h3>\n<p>The &#8216;less&#8217; command supports a variety of navigation commands. Here are some of the most common ones:<\/p>\n<ul>\n<li><code>g<\/code> or &#8220;: Go to the end of the file<\/li>\n<li><code>\/pattern<\/code>: Search for a pattern<\/li>\n<li><code>n<\/code>: Go to the next match<\/li>\n<li><code>N<\/code>: Go to the previous match<\/li>\n<\/ul>\n<pre><code class=\"language-bash line-numbers\"># Open a file with less\nless myfile.txt\n\n# Search for a pattern\n\/pattern\n\n# Output:\n# 'The cursor moves to the next occurrence of \"pattern\" in myfile.txt.'\n<\/code><\/pre>\n<p>In this example, we&#8217;re opening a file with &#8216;less&#8217; and searching for a specific pattern. The cursor moves to the next occurrence of the pattern, allowing us to quickly find what we&#8217;re looking for.<\/p>\n<p>In conclusion, understanding the basics of file viewing and navigation in Linux is crucial for efficient system use. The &#8216;less&#8217; command, with its powerful features and intuitive interface, is a vital tool for any Linux user.<\/p>\n<h2>The Relevance of File Navigation in System Administration and Data Analysis<\/h2>\n<p>The ability to navigate files efficiently is a critical skill in system administration and data analysis. In system administration, log files can quickly grow to enormous sizes. Being able to navigate these files, search for specific entries, and understand the flow of events is crucial for troubleshooting and maintaining a healthy system.<\/p>\n<p>In data analysis, data files can be even larger. The &#8216;less&#8217; command allows data analysts to quickly view and search through their data. This can be particularly useful when cleaning data or performing exploratory data analysis.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Open a large data file with less\nless large_data_file.csv\n\n# Output:\n# 'Contents of large_data_file.csv displayed here.'\n<\/code><\/pre>\n<p>In this code block, we&#8217;re opening a large data file with &#8216;less&#8217;. This allows us to quickly view and search through the data, which can be invaluable when dealing with large datasets.<\/p>\n<h2>Exploring Related Concepts: Regular Expressions and File Permissions<\/h2>\n<p>The &#8216;less&#8217; command supports regular expressions, which can be incredibly powerful when searching through files. Regular expressions allow you to search for patterns, not just exact matches, which can make your searches more flexible and comprehensive.<\/p>\n<p>File permissions are another important concept in Linux. The &#8216;less&#8217; command respects file permissions, meaning that you can only view files that you have permission to read. Understanding file permissions can help you troubleshoot issues and maintain the security of your system.<\/p>\n<h3>Further Resources for Mastering &#8216;Less&#8217; and File Navigation in Linux<\/h3>\n<p>If you&#8217;re interested in learning more about the &#8216;less&#8217; command, file navigation, or related concepts in Linux, here are some resources that you might find helpful:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"http:\/\/www.greenwoodsoftware.com\/less\/\" target=\"_blank\" rel=\"noopener\">GNU &#8216;less&#8217; Manual<\/a>: This is the official manual for &#8216;less&#8217;, and it&#8217;s a comprehensive resource for understanding how &#8216;less&#8217; works and how to use it effectively.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.digitalocean.com\/community\/tutorials\/basic-linux-navigation-and-file-management\" target=\"_blank\" rel=\"noopener\">Linux File Navigation for Beginners<\/a>: This guide provides an introduction to file navigation in Linux, covering basic commands and concepts.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.linuxnix.com\/regular-expressions-linux-i\/\" target=\"_blank\" rel=\"noopener\">Regular Expressions in Linux Explained<\/a>: This article explains how regular expressions work in Linux and how to use them in commands like &#8216;less&#8217;.<\/p>\n<\/li>\n<\/ol>\n<h2>Wrapping Up: Installing the &#8216;Less&#8217; Command in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved into the installation and usage of the &#8216;less&#8217; command in Linux, an essential tool for efficient file viewing and navigation. We\u2019ve explored its benefits, installation methods, and how to use it effectively in different Linux distributions.<\/p>\n<p>We started with the basics, learning how to install the &#8216;less&#8217; command using package managers like APT for Debian-based distributions and YUM for RPM-based distributions. We then moved to more advanced topics, such as installing &#8216;less&#8217; from source code and installing specific versions of &#8216;less&#8217;. We also covered how to use the &#8216;less&#8217; command to view and navigate files in Linux.<\/p>\n<p>Along the way, we tackled common issues you might encounter when using the &#8216;less&#8217; command, such as the &#8216;less: command not found&#8217; error and scrolling issues, providing you with solutions for each problem. We also discussed the importance of file viewing and navigation in system administration and data analysis, highlighting the relevance of the &#8216;less&#8217; command in these areas.<\/p>\n<table>\n<thead>\n<tr>\n<th>Command<\/th>\n<th>Navigation<\/th>\n<th>Speed<\/th>\n<th>Complexity<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Less<\/td>\n<td>Forward and backward<\/td>\n<td>Fast<\/td>\n<td>Moderate<\/td>\n<\/tr>\n<tr>\n<td>More<\/td>\n<td>Forward only<\/td>\n<td>Slow for large files<\/td>\n<td>Simple<\/td>\n<\/tr>\n<tr>\n<td>Cat<\/td>\n<td>None<\/td>\n<td>Fast for small files, slow for large files<\/td>\n<td>Very simple<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>We also looked at alternative commands for file viewing in Linux, such as the &#8216;more&#8217; and &#8216;cat&#8217; commands, giving you a broader understanding of file navigation tools in Linux.<\/p>\n<p>Whether you&#8217;re a beginner just starting out with Linux or an experienced user looking to improve your file navigation skills, we hope this guide has given you a deeper understanding of the &#8216;less&#8217; command and its capabilities. With its balance of speed, navigation capabilities, and ease of use, &#8216;less&#8217; is a powerful tool for file viewing in Linux. Happy navigating!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you finding it challenging to view large files in Linux? Well, the &#8216;less&#8217; command can be your savior, enabling you to navigate through them with ease. For beginners and even some seasoned users, installing and using Linux commands can seem a bit daunting. However, it&#8217;s accessible on most package management systems, simplifying the installation [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15466,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6631","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bash","category-linux","category-sysadmin","cat-124-id","cat-3-id","cat-9-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6631","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/comments?post=6631"}],"version-history":[{"count":6,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6631\/revisions"}],"predecessor-version":[{"id":15539,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6631\/revisions\/15539"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/15466"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6631"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6631"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}