{"id":6649,"date":"2024-01-07T11:37:55","date_gmt":"2024-01-07T18:37:55","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6649"},"modified":"2024-01-07T11:38:10","modified_gmt":"2024-01-07T18:38:10","slug":"install-more-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-more-command-linux\/","title":{"rendered":"How to Install and Use &#8216;More&#8217; Command in Linux"},"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\/Illustration-of-a-Linux-terminal-displaying-the-installation-of-the-more-command-a-text-paging-filter-300x300.jpg\" alt=\"Illustration of a Linux terminal displaying the installation of the more command a text paging filter\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you trying to navigate through long text files in Linux but find the process cumbersome? You&#8217;re not alone. Many Linux users, especially beginners, find this task daunting. However, the &#8216;more&#8217; command, a handy tool for reading files page by page, can be your saving grace. Installing and using the &#8216;more&#8217; command will make it easier to manage and navigate through large text files on your Linux system, and this guide will walk you through all the steps!<\/p>\n<p><strong>In this guide, we will walk you through the process of installing and using the &#8216;more&#8217; command in Linux.<\/strong> We will provide instructions for both APT and YUM-based distributions, delve into compiling the &#8216;more&#8217; command from source, installing a specific version, and finally, how to use the &#8216;more&#8217; command and ensure it&#8217;s installed correctly.<\/p>\n<p>So, let&#8217;s dive in and start installing the &#8216;more&#8217; command on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;More&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  In most Linux distributions, the &#8216;more&#8217; command comes pre-installed, you can verify this with the command, <code>which more<\/code>. If for some reason it is not installed, you can add it via the util-linux package and the command, <code>sudo yum install util-linux<\/code> or <code>sudo apt-get install util-linux<\/code>. To use it, simply type <code>more filename<\/code> in the terminal. The command will display the content of the file page by page.\n<\/p><\/blockquote>\n<p>For example:<\/p>\n<pre><code class=\"language-bash line-numbers\">more \/etc\/passwd\n\n# Output:\n# root:x:0:0:root:\/root:\/bin\/bash\n# daemon:x:1:1:daemon:\/usr\/sbin:\/usr\/sbin\/nologin\n# bin:x:2:2:bin:\/bin:\/usr\/sbin\/nologin\n# ...\n<\/code><\/pre>\n<p>This command will display the contents of the <code>\/etc\/passwd<\/code> file page by page. You can press <code>space<\/code> to go to the next page or <code>q<\/code> to quit the command.<\/p>\n<p>This is just a basic way to use the &#8216;more&#8217; command in Linux, but there&#8217;s much more to learn about using &#8216;more&#8217; effectively. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Understanding and Installing the &#8216;More&#8217; Command in Linux<\/h2>\n<p>The &#8216;more&#8217; command in Linux is a utility for viewing text files in the system terminal. It reads the file content page by page, making it easier to navigate through large text files. This command is especially useful when you need to view the contents of a file but don&#8217;t want to open it in a text editor.<\/p>\n<p>Now, let&#8217;s dive into how you can install the &#8216;more&#8217; command on your Linux system.<\/p>\n<h3>Installing with APT<\/h3>\n<p>If you&#8217;re using a Debian-based distribution like Ubuntu, you can install &#8216;more&#8217; using the Advanced Package Tool (APT). However, the &#8216;more&#8217; command usually comes pre-installed. Here&#8217;s how you can check if it&#8217;s already installed and how to install it if it&#8217;s not:<\/p>\n<pre><code class=\"language-bash line-numbers\">which more\n\n# Output:\n# \/usr\/bin\/more\n<\/code><\/pre>\n<p>The <code>which<\/code> command will output the path of the &#8216;more&#8217; command if it&#8217;s installed. If it&#8217;s not, you can install it using the &#8216;util-linux&#8217; package:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get update\nsudo apt-get install util-linux\n<\/code><\/pre>\n<h3>Installing with YUM<\/h3>\n<p>If you&#8217;re using a Red Hat-based distribution like CentOS, you can use the Yellowdog Updater, Modified (YUM) to install &#8216;more&#8217;. Similar to APT, &#8216;more&#8217; usually comes pre-installed. Here&#8217;s how you can check if it&#8217;s already installed and how to install it if it&#8217;s not:<\/p>\n<pre><code class=\"language-bash line-numbers\">which more\n\n# Output:\n# \/usr\/bin\/more\n<\/code><\/pre>\n<p>If &#8216;more&#8217; is not installed, you can install it using the &#8216;util-linux&#8217; package:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum update\nsudo yum install util-linux\n<\/code><\/pre>\n<p>By now, you should have the &#8216;more&#8217; command installed on your Linux system. In the next section, we&#8217;ll dive into other installation methods.<\/p>\n<h2>Installing &#8216;More&#8217; Command from Source<\/h2>\n<p>If you want to install the &#8216;more&#8217; command from source, you&#8217;ll need to download the source code, compile it, and install it. Here&#8217;s a basic example:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget http:\/\/kernel.org\/pub\/linux\/utils\/util-linux\/v2.31\/util-linux-2.31.tar.gz\ntar -xvzf util-linux-2.31.tar.gz\ncd util-linux-2.31\n.\/configure\nmake\nsudo make install\n<\/code><\/pre>\n<p>This will download the source code for the &#8216;util-linux&#8217; package, extract it, navigate into the directory, configure the package, compile the code, and install it.<\/p>\n<h2>Installing Different Versions<\/h2>\n<h3>From Source<\/h3>\n<p>If you want to install a specific version of the &#8216;more&#8217; command from source, you can download that version&#8217;s source code. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget http:\/\/kernel.org\/pub\/linux\/utils\/util-linux\/v2.30\/util-linux-2.30.tar.gz\ntar -xvzf util-linux-2.30.tar.gz\ncd util-linux-2.30\n.\/configure\nmake\nsudo make install\n<\/code><\/pre>\n<p>This will install version 2.30 of the &#8216;util-linux&#8217; package, which includes the &#8216;more&#8217; command.<\/p>\n<h3>Using Package Managers<\/h3>\n<h4>APT<\/h4>\n<p>If you&#8217;re using APT, you can specify the version you want to install. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install util-linux=2.30-0ubuntu4\n<\/code><\/pre>\n<h4>YUM<\/h4>\n<p>If you&#8217;re using YUM, you can also specify the version. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install util-linux-2.30-1.el7\n<\/code><\/pre>\n<h3>Version Comparison<\/h3>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Changes<\/th>\n<th>Compatibility<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>2.30<\/td>\n<td>Added support for UTF-8<\/td>\n<td>Compatible with most systems<\/td>\n<\/tr>\n<tr>\n<td>2.31<\/td>\n<td>Improved performance<\/td>\n<td>Compatible with most systems<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Basic Usage and Verification<\/h2>\n<h3>Using &#8216;More&#8217; Command<\/h3>\n<p>Here&#8217;s an example of using the &#8216;more&#8217; command to view the contents of a file:<\/p>\n<pre><code class=\"language-bash line-numbers\">more \/etc\/passwd\n\n# Output:\n# root:x:0:0:root:\/root:\/bin\/bash\n# daemon:x:1:1:daemon:\/usr\/sbin:\/usr\/sbin\/nologin\n# bin:x:2:2:bin:\/bin:\/usr\/sbin\/nologin\n# ...\n<\/code><\/pre>\n<p>You can press <code>space<\/code> to go to the next page or <code>q<\/code> to quit.<\/p>\n<h3>Verifying Installation<\/h3>\n<p>You can verify that the &#8216;more&#8217; command is installed correctly by using the <code>which<\/code> command:<\/p>\n<pre><code class=\"language-bash line-numbers\">which more\n\n# Output:\n# \/usr\/bin\/more\n<\/code><\/pre>\n<p>This will output the path of the &#8216;more&#8217; command if it&#8217;s installed correctly.<\/p>\n<h2>Exploring Alternative Commands for File Viewing in Linux<\/h2>\n<p>While the &#8216;more&#8217; command is a powerful tool for viewing text files page by page, it&#8217;s not the only utility available in Linux for this purpose. Two other commands, &#8216;less&#8217; and &#8216;cat&#8217;, also offer unique functionalities for file viewing.<\/p>\n<h3>The &#8216;Less&#8217; Command<\/h3>\n<p>The &#8216;less&#8217; command is similar to &#8216;more&#8217;, but with added features. It allows you to navigate both forward and backward in the file. You can also search for text within the file. Here&#8217;s a basic example of using &#8216;less&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\">less \/etc\/passwd\n\n# Output:\n# root:x:0:0:root:\/root:\/bin\/bash\n# daemon:x:1:1:daemon:\/usr\/sbin:\/usr\/sbin\/nologin\n# bin:x:2:2:bin:\/bin:\/usr\/sbin\/nologin\n# ...\n<\/code><\/pre>\n<p>Just like &#8216;more&#8217;, you can press <code>space<\/code> to go to the next page, but you can also press <code>b<\/code> to go back to the previous page. Press <code>\/<\/code> followed by a string to search for that string in the file.<\/p>\n<h3>The &#8216;Cat&#8217; Command<\/h3>\n<p>The &#8216;cat&#8217; command is the simplest way to display the contents of a file. It outputs the entire file to the console at once. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">cat \/etc\/passwd\n\n# Output:\n# root:x:0:0:root:\/root:\/bin\/bash\n# daemon:x:1:1:daemon:\/usr\/sbin:\/usr\/sbin\/nologin\n# bin:x:2:2:bin:\/bin:\/usr\/sbin\/nologin\n# ...\n<\/code><\/pre>\n<p>While &#8216;cat&#8217; is simpler and faster, it can be overwhelming for large files as it doesn&#8217;t paginate the output like &#8216;more&#8217; and &#8216;less&#8217;.<\/p>\n<h3>Comparing &#8216;More&#8217;, &#8216;Less&#8217;, and &#8216;Cat&#8217;<\/h3>\n<table>\n<thead>\n<tr>\n<th>Command<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>More<\/td>\n<td>Paginates output, easy to use<\/td>\n<td>Can&#8217;t navigate backwards<\/td>\n<\/tr>\n<tr>\n<td>Less<\/td>\n<td>Paginates output, can navigate both ways, can search text<\/td>\n<td>Slightly more complex<\/td>\n<\/tr>\n<tr>\n<td>Cat<\/td>\n<td>Simplest, fastest<\/td>\n<td>Doesn&#8217;t paginate output<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>In conclusion, while &#8216;more&#8217; is a great utility for viewing files in Linux, &#8216;less&#8217; and &#8216;cat&#8217; also offer valuable features. Depending on your needs, you might find one more useful than the others.<\/p>\n<h2>Addressing Common &#8216;More&#8217; Command Issues in Linux<\/h2>\n<p>While the &#8216;more&#8217; command is a useful tool, you might encounter some issues while using it. Here are some common problems and their solutions.<\/p>\n<h3>File Not Found Error<\/h3>\n<p>If you see a &#8216;file not found&#8217; error, it means the file you&#8217;re trying to view doesn&#8217;t exist in the specified location. Check the file path and try again. For example:<\/p>\n<pre><code class=\"language-bash line-numbers\">more \/etc\/nonexistentfile\n\n# Output:\n# \/etc\/nonexistentfile: No such file or directory\n<\/code><\/pre>\n<p>In this case, the file <code>\/etc\/nonexistentfile<\/code> doesn&#8217;t exist. You should verify the file location and try again.<\/p>\n<h3>Permission Denied Error<\/h3>\n<p>If you see a &#8216;permission denied&#8217; error, it means you don&#8217;t have the necessary permissions to view the file. You can use the <code>sudo<\/code> command to view the file as the root user. For example:<\/p>\n<pre><code class=\"language-bash line-numbers\">more \/etc\/shadow\n\n# Output:\n# \/etc\/shadow: Permission denied\n<\/code><\/pre>\n<p>In this case, you can use <code>sudo<\/code> to view the file:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo more \/etc\/shadow\n\n# Output:\n# root:$6$z1sQOKAy$pd3JC4Xsj9A7ecx.lI1KTjwxNLtWkvB6FyFQL.g0N2Uk7T57DnUw5qf1ILMZSN0YRZ1.MM6X7O9ZRM5X.NBU80:18358:0:99999:7:::\n# daemon:*:17647:0:99999:7:::\n# bin:*:17647:0:99999:7:::\n# ...\n<\/code><\/pre>\n<p>This command will show the contents of the <code>\/etc\/shadow<\/code> file, which contains the encrypted passwords for the system&#8217;s users.<\/p>\n<h3>More Command Not Found Error<\/h3>\n<p>If you see a &#8216;more: command not found&#8217; error, it means the &#8216;more&#8217; command is not installed on your system. Refer to the installation section of this guide to install it.<\/p>\n<p>Remember, the &#8216;more&#8217; command is a handy tool to navigate through large text files in Linux. With these troubleshooting tips, you should be able to overcome common issues and use the &#8216;more&#8217; command effectively.<\/p>\n<h2>The Essence of File Viewing Commands in Linux<\/h2>\n<p>In the Linux environment, file viewing commands like &#8216;more&#8217;, &#8216;less&#8217;, and &#8216;cat&#8217; are fundamental tools for system administration and file management. They provide a convenient way to view and navigate through the contents of text files directly from the terminal, making them indispensable for tasks that involve analyzing logs, scripts, and other text files.<\/p>\n<h3>The Importance of File Viewing Commands<\/h3>\n<p>Understanding file viewing commands is crucial for anyone working with Linux. These commands allow you to quickly view and analyze the contents of a file without the need for a graphical text editor. This is particularly important when working on a server without a graphical user interface (GUI) or when connected to a remote server via SSH.<\/p>\n<p>For instance, system administrators often need to view log files to troubleshoot issues or monitor system performance. With commands like &#8216;more&#8217;, they can easily paginate through large log files, making the task less overwhelming.<\/p>\n<pre><code class=\"language-bash line-numbers\">more \/var\/log\/syslog\n\n# Output:\n# Aug  5 08:45:01 myhost CRON[29440]: (root) CMD (command -v debian-sa1 &gt; \/dev\/null &amp;&amp; debian-sa1 1 1)\n# Aug  5 08:55:01 myhost CRON[29468]: (root) CMD (command -v debian-sa1 &gt; \/dev\/null &amp;&amp; debian-sa1 1 1)\n# ...\n<\/code><\/pre>\n<p>In this example, the &#8216;more&#8217; command is used to view the system log file <code>\/var\/log\/syslog<\/code>. The output is paginated, making it easier to read through.<\/p>\n<h3>File Management and System Administration<\/h3>\n<p>File viewing commands are also essential for file management tasks. For example, you might need to view the contents of a configuration file before making changes to it. With the &#8216;more&#8217; command, you can quickly check the file&#8217;s current settings before editing.<\/p>\n<p>Moreover, these commands are often used in scripts to process text data. For instance, you can use &#8216;more&#8217; in a pipeline with other commands to filter and process log data.<\/p>\n<p>In conclusion, file viewing commands like &#8216;more&#8217; are fundamental tools in Linux. They simplify system administration and file management tasks, making them essential skills for Linux users.<\/p>\n<h2>Exploring the Role of File Viewing Commands in Scripting and Automation<\/h2>\n<p>File viewing commands like &#8216;more&#8217; are not just for viewing files &#8211; they play a crucial role in scripting and automation in Linux. They allow you to read and process text data in scripts, which can be used to automate various tasks.<\/p>\n<p>For example, you can use the &#8216;more&#8217; command in a script to process log data and generate a report. Here&#8217;s a simple example of a script that uses &#8216;more&#8217; to count the number of lines in a log file:<\/p>\n<pre><code class=\"language-bash line-numbers\">#!\/bin\/bash\n\nlogfile=\/var\/log\/syslog\nlinecount=$(more $logfile | wc -l)\n\necho \"There are $linecount lines in $logfile.\"\n\n# Output:\n# There are 12345 lines in \/var\/log\/syslog.\n<\/code><\/pre>\n<p>In this script, &#8216;more&#8217; reads the contents of the log file, and &#8216;wc -l&#8217; counts the number of lines. The result is stored in the <code>linecount<\/code> variable and then printed.<\/p>\n<h3>Delving into Related Concepts: File Permissions and Text Processing<\/h3>\n<p>Understanding file viewing commands is just the beginning. To fully harness the power of the Linux command line, you should also explore related concepts like file permissions and text processing.<\/p>\n<p>File permissions control who can read, write, and execute files, while text processing commands allow you to manipulate text data in various ways. For instance, you can use &#8216;grep&#8217; to search for text, &#8216;sed&#8217; to replace text, and &#8216;awk&#8217; to process text.<\/p>\n<p>Here&#8217;s an example of using &#8216;more&#8217; and &#8216;grep&#8217; to search for errors in a log file:<\/p>\n<pre><code class=\"language-bash line-numbers\">more \/var\/log\/syslog | grep ERROR\n\n# Output:\n# Aug  5 09:00:01 myhost myprogram[12345]: ERROR Something went wrong\n# ...\n<\/code><\/pre>\n<p>In this command, &#8216;more&#8217; reads the log file, and &#8216;grep&#8217; filters out lines containing the word &#8216;ERROR&#8217;.<\/p>\n<h3>Further Resources for Mastering Linux File Viewing Commands<\/h3>\n<p>To deepen your understanding of file viewing commands and related concepts in Linux, here are some resources you can explore:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.gnu.org\/software\/coreutils\/manual\/coreutils.html\" target=\"_blank\" rel=\"noopener\">GNU Coreutils Manual<\/a>: This is the official manual for the GNU core utilities, which include &#8216;more&#8217;, &#8216;less&#8217;, and &#8216;cat&#8217;.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/linuxjourney.com\/\" target=\"_blank\" rel=\"noopener\">Linux Command Line Basics<\/a>: This is an interactive tutorial that covers the basics of the Linux command line, including file viewing commands.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"http:\/\/tldp.org\/LDP\/abs\/html\/\" target=\"_blank\" rel=\"noopener\">Advanced Bash-Scripting Guide<\/a>: This guide covers advanced topics in bash scripting, including text processing and automation.<\/p>\n<\/li>\n<\/ol>\n<h2>Wrapping Up: Installing the &#8216;More&#8217; Command in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved into the &#8216;more&#8217; command in Linux, a fundamental tool for navigating through large text files. We&#8217;ve explored its installation process, basic usage, and various advanced use cases, all while addressing common issues and their solutions.<\/p>\n<p>We began with the basics, learning how to install and use the &#8216;more&#8217; command on different Linux distributions. We then delved into advanced usage, including how to install the &#8216;more&#8217; command from source, how to install specific versions, and how to verify the installation. Along the way, we addressed common issues you might encounter when using the &#8216;more&#8217; command, providing practical solutions.<\/p>\n<p>We also explored alternative approaches to file viewing in Linux, comparing the &#8216;more&#8217; command with &#8216;less&#8217; and &#8216;cat&#8217;. Here&#8217;s a quick comparison of these file viewing commands:<\/p>\n<table>\n<thead>\n<tr>\n<th>Command<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>More<\/td>\n<td>Paginates output, easy to use<\/td>\n<td>Can&#8217;t navigate backwards<\/td>\n<\/tr>\n<tr>\n<td>Less<\/td>\n<td>Paginates output, can navigate both ways, can search text<\/td>\n<td>Slightly more complex<\/td>\n<\/tr>\n<tr>\n<td>Cat<\/td>\n<td>Simplest, fastest<\/td>\n<td>Doesn&#8217;t paginate output<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re a beginner just starting out with Linux, an intermediate user looking to level up your skills, or an expert seeking a handy reference, we hope this guide has helped you understand and master the &#8216;more&#8217; command in Linux.<\/p>\n<p>With its ability to paginate through large text files, the &#8216;more&#8217; command is a powerful tool for system administration and file management in Linux. Now, you&#8217;re well equipped to navigate through text files with ease. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you trying to navigate through long text files in Linux but find the process cumbersome? You&#8217;re not alone. Many Linux users, especially beginners, find this task daunting. However, the &#8216;more&#8217; command, a handy tool for reading files page by page, can be your saving grace. Installing and using the &#8216;more&#8217; command will make it [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15310,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6649","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\/6649","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=6649"}],"version-history":[{"count":8,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6649\/revisions"}],"predecessor-version":[{"id":15355,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6649\/revisions\/15355"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/15310"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6649"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6649"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6649"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}