{"id":1720,"date":"2022-10-15T12:30:00","date_gmt":"2022-10-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1720"},"modified":"2022-10-13T14:09:24","modified_gmt":"2022-10-13T19:09:24","slug":"5-most-used-touch-commands-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/","title":{"rendered":"5 Most Used Touch Commands in Linux With Examples"},"content":{"rendered":"\n<div id=\"linux-3862206173\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial, we are going to show you the most used touch commands in Linux with examples.<\/p>\n\n\n\n<p>The touch command is a standard command in <a href=\"https:\/\/linuxhostsupport.com\/\" title=\"\">Linux operating system<\/a> used on daily basis by the system administrators, developers, and other users familiar with the Linux command line. With the touch command, we can easily create files, empty files, modify files, timestamps and etc.<\/p>\n\n\n\n<p>In this tutorial, we will execute the <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting\/\" title=\"\">touch commands on Ubuntu 20.04 OS<\/a>, but you can choose any Linux distro. Le&#8217;ts get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>A server with Ubuntu 20.04 OS<\/li><li>User privileges: root or non-root user with sudo privileges<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>If you have a fresh installation of Ubuntu 20.04, it is recommended to update the system packages to the latest versions available.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<p>Once the system is updated, we are ready to show you the basic touch commands in Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Create a File<\/h2>\n\n\n\n<p>To create an empty zero byte file, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch file.txt<\/pre>\n\n\n\n<p>You can check the size of the file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">-rw-r--r--  1 root root <strong>0<\/strong> Aug 14 22:58 file.txt<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. Change only the access time<\/h2>\n\n\n\n<p>To change only the access time to the file, you need to execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch -a file.txt<\/pre>\n\n\n\n<p>This command will update the last access modification time and will create the file if it does not exists.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Use the timestamp of another file<\/h2>\n\n\n\n<p>Sometimes we need to set the same timestamp to a file from another file. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch -r file1.txt file2.txt<\/pre>\n\n\n\n<p>This command will update the timestamp of <strong>file2.txt<\/strong> with the timestamp of file <strong>file1.txt<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">4. Create a file with a specific timestamp<\/h2>\n\n\n\n<p>To create a file and specify the time, you need to execute the following command:<\/p>\n\n\n\n<p>touch -t 202208181118.34 file-time<\/p>\n\n\n\n<p>The command above will create the <strong>file-time<\/strong> with a timestamp on <strong>August 18, 2022<\/strong>, at <strong>11:18:34 AM<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">5. Creating Multiple files<\/h2>\n\n\n\n<p>In the above examples, we were creating only a single file. Sometimes we need multiple files to be created. To do that, we can simply use the touch command with multiple file names:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch file1.txt file2.txt file3.txt<\/pre>\n\n\n\n<p>This command will create three files at once:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">-rw-r--r--  1 root root    0 Aug 15 11:51 file1.txt\n-rw-r--r--  1 root root    0 Aug 15 11:51 file2.txt\n-rw-r--r--  1 root root    0 Aug 15 11:51 file3.txt\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about the touch command<\/h2>\n\n\n\n<p>In the previous paragraphs, we covered the most used touch commands. There is a brief explanation of the touch command along with options in Linux. To learn more about the touch command, execute the <strong>man touch<\/strong> command in your terminal.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">man touch<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">TOUCH(1)                                                                   User Commands                                                                   TOUCH(1)\n\nNAME\n       touch - change file timestamps\n\nSYNOPSIS\n       touch [OPTION]... FILE...\n\nDESCRIPTION\n       Update the access and modification times of each FILE to the current time.\n\n       A FILE argument that does not exist is created empty, unless -c or -h is supplied.\n\n       A FILE argument string of - is handled specially and causes touch to change the times of the file associated with standard output.\n\n       Mandatory arguments to long options are mandatory for short options too.\n\n       -a     change only the access time\n\n       -c, --no-create\n              do not create any files\n\n       -d, --date=STRING\n              parse STRING and use it instead of current time\n\n       -f     (ignored)\n\n       -h, --no-dereference\n              affect each symbolic link instead of any referenced file (useful only on systems that can change the timestamps of a symlink)\n\n       -m     change only the modification time\n\n       -r, --reference=FILE\n              use this file's times instead of current time\n\n       -t STAMP\n              use [[CC]YY]MMDDhhmm[.ss] instead of current time\n\n       --time=WORD\n              change the specified time: WORD is access, atime, or use: equivalent to -a WORD is modify or mtime: equivalent to -m\n\n       --help display this help and exit\n<\/pre>\n\n\n\n<p>Congratulations! You learned the basic touch commands with examples applicable to every Linux distribution.<\/p>\n\n\n\n<p>You learned how to create one file or multiple files with specific timestamps. If you find it challenging to understand the touch command and you are not able to manage the files on your server, you can simply contact our epic technical support, and they will do the rest. You only need to sign up for one of our <a href=\"https:\/\/www.rosehosting.com\/linux-vps-hosting\/\" title=\"\">NVMe VPS plans<\/a> and submit a support ticket. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post about the five most used touch commands in Linux, please share it with your friends on social networks or simply leave a reply below. Thanks.<\/p><div id=\"linux-3086371930\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we are going to show you the most used touch commands in Linux with examples. The touch command is a standard command in Linux operating system used on daily basis by the system administrators, developers, and other users familiar with the Linux command line. With the touch command, we can easily create [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1721,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,228],"tags":[45,79,229],"class_list":["post-1720","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","category-linux","tag-linux","tag-linux-host-support","tag-touch-commands"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>5 Most Used Touch Commands in Linux With Examples | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Interested in finding out more about the most used touch commands in Linux? Read our guide and find out more about this topic, with some real examples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-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=\"5 Most Used Touch Commands in Linux With Examples | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Interested in finding out more about the most used touch commands in Linux? Read our guide and find out more about this topic, with some real examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"5 Most Used Touch Commands in Linux With Examples\",\"datePublished\":\"2022-10-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/\"},\"wordCount\":504,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg\",\"keywords\":[\"linux\",\"Linux host support\",\"touch commands\"],\"articleSection\":[\"Guides\",\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/\",\"name\":\"5 Most Used Touch Commands in Linux With Examples | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg\",\"datePublished\":\"2022-10-15T17:30:00+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Interested in finding out more about the most used touch commands in Linux? Read our guide and find out more about this topic, with some real examples.\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg\",\"width\":742,\"height\":372,\"caption\":\"5 most used touch commands in linux with examples\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"5 Most Used Touch Commands in Linux With Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"5 Most Used Touch Commands in Linux With Examples | LinuxHostSupport","description":"Interested in finding out more about the most used touch commands in Linux? Read our guide and find out more about this topic, with some real examples.","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:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"5 Most Used Touch Commands in Linux With Examples | LinuxHostSupport","og_description":"Interested in finding out more about the most used touch commands in Linux? Read our guide and find out more about this topic, with some real examples.","og_url":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2022-10-15T17:30:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"5 Most Used Touch Commands in Linux With Examples","datePublished":"2022-10-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/"},"wordCount":504,"commentCount":1,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg","keywords":["linux","Linux host support","touch commands"],"articleSection":["Guides","Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/","url":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/","name":"5 Most Used Touch Commands in Linux With Examples | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg","datePublished":"2022-10-15T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Interested in finding out more about the most used touch commands in Linux? Read our guide and find out more about this topic, with some real examples.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2022\/10\/5-most-used-touch-commands-in-linux-with-examples.jpg","width":742,"height":372,"caption":"5 most used touch commands in linux with examples"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/5-most-used-touch-commands-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"5 Most Used Touch Commands in Linux With Examples"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1720","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1720"}],"version-history":[{"count":1,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1720\/revisions"}],"predecessor-version":[{"id":1722,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1720\/revisions\/1722"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1721"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1720"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1720"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1720"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}