{"id":1066,"date":"2020-03-04T15:19:00","date_gmt":"2020-03-04T21:19:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1066"},"modified":"2020-03-04T15:19:00","modified_gmt":"2020-03-04T21:19:00","slug":"what-is-the-wait-command-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/","title":{"rendered":"What is the Wait Command in Linux? (With Examples)"},"content":{"rendered":"<div id=\"linux-2449942908\" 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 will explain what the\u00a0<code>wait<\/code>\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a Linux VPS.<\/p>\n<p><code><img decoding=\"async\" class=\"alignright size-full wp-image-1071\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/03\/using-wait-command-scripts-in-linux-examples.jpg\" alt=\"\" width=\"80\" height=\"140\" \/>wait<\/code> is a versatile tool which you can use in Linux to determine when a given process or job is completed. It will return its termination status as a result, with which you can understand whether the process completed successfully or if it failed for some reason. While this command looks similar to the <code>sleep<\/code> command, they fulfill different purposes. Let&#8217;s get into it.<\/p>\n<p><!--more--><\/p>\n<p><code>wait<\/code> is different from\u00a0<code>sleep<\/code>. Many users which are new in Linux find it difficult to understand the difference between these two. In general, these two commands are quite different and are used for different types of tasks. As we mentioned earlier, the <code>wait<\/code> command waits for a process to finish and it returns the termination status. On the other hand,\u00a0<code>sleep<\/code> is typically used to delay a certain job for a specified amount of time. You will often need to use these two commands in your custom bash shell scripts, so it is important to understand the difference. Let&#8217;s get into that.<\/p>\n<p>To test how the <code>wait<\/code> command works, you will need to connect to your Linux server via SSH. Log in to your server and start a simple process in the background. Run the following command in your terminal to do so:<\/p>\n<pre>sleep 60 &amp;<\/pre>\n<p>The command above will start a process in the background. That process will run for 60 seconds, after which it will be terminated. The output of the command will be the PID of the process, so you will see something like this on your screen:<\/p>\n<pre># sleep 60 &amp;\r\n[4] 4455<\/pre>\n<p>In this case <strong>4455<\/strong> is the PID of the process. In order to find the PID of a different process, you can use the following command:<\/p>\n<pre>ps axuwf | grep \"sleep 60\" | grep -v grep | awk {'print $2'}<\/pre>\n<p>where <code>\"sleep 60\"<\/code> is the name of the command\/process. In our example, it will return the following:<\/p>\n<pre># ps axuwf | grep \"sleep 60\" | grep -v grep | awk {'print $2'}\r\n4455<\/pre>\n<p>Now that you know the PID of the process, you can run <code>wait<\/code> and wait for the process to complete in order to see the termination status.<\/p>\n<pre>wait 4455<\/pre>\n<p>Once the process finishes, you will see the following in your terminal:<\/p>\n<pre># wait 4455\r\n[3]   Done                    sleep 60\r\n<\/pre>\n<p>The output tells you that the <code>sleep 60<\/code> process is done and no longer running on your Linux VPS.<\/p>\n<p>As you can see in the example above, you need to pass the process ID as the argument to <code>wait<\/code>. Basically, <code>wait<\/code> will return the termination status for any and all specified processes. You can specify multiple processes at once by providing the process ID or a job specification. If you provide a job specification, all processes in that job&#8217;s pipeline are waited for and considered.<\/p>\n<p>The <code>wait<\/code> command comes in handy when you need to run a specific command after some or all of the processes are finished. You will find this useful when writing shell scripts or other programs. The example below shows you how to use <code>wait<\/code> in a shell script.<\/p>\n<p>Create a new shell script in the <code>\/opt<\/code> directory:<\/p>\n<pre>cd \/opt\r\nnano wait.sh<\/pre>\n<p>You can use a text editor of your choice, we are using <code>nano<\/code> in our example. Paste the following lines in the file:<\/p>\n<pre>#!\/bin\/bash\r\necho \"Process 1 is running for 5 seconds ...\" &amp;&amp; sleep 5 &amp;\r\nPID=$!\r\necho \"Process 2 is running for 15 seconds ...\" &amp;&amp; sleep 15 &amp;\r\nwait $PID\r\necho \"Process 1 exited with status $?\"\r\nwait $!\r\necho \"Process 2 exited with status $?\"\r\n<\/pre>\n<p>Save the file and close it. Once you close the file, make it executable using the following command:<\/p>\n<pre>chmod a+x wait.sh<\/pre>\n<p>To run the shell script that you just created, use the following command:<\/p>\n<pre>.\/wait.sh<\/pre>\n<p>Once you run the shell script, you will see the following output in your terminal:<\/p>\n<pre>Process 1 is running for 5 seconds ...\r\nProcess 2 is running for 15 seconds ...\r\nProcess 1 exited with status 0\r\nProcess 2 exited with status 0\r\n<\/pre>\n<p>As you can see in the example, both processes are started and running for the specified number of seconds. Once they are finished, the output with their termination status will be echoed on the screen. Of course, you can modify the script and try different tasks to better learn how the <code>wait<\/code> command works. Hopefully, you will find it useful.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1072\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/03\/managed-support-for-hosting-help-with-commands-scripts.jpg\" alt=\"\" width=\"80\" height=\"140\" \/>If you are one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Managed Linux Hosting Support<\/a>\u00a0customers, you can always ask our expert Linux system admins to help you with any aspect of using or configuring your server. They are available 24\/7 and can take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong>.<\/span> If you liked this post on what the Linux wait command is, please share it with your friends on the social networks using the share shortcuts, or simply leave a reply below. Thanks.<\/p><div id=\"linux-2367123900\" 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 will explain what the\u00a0wait\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a Linux VPS. wait is a versatile tool which you can use in Linux to determine when a given process or job is completed. It will return [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1069,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-1066","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is the Wait Command in Linux? (With Examples) | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will explain what the\u00a0wait\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a\" \/>\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\/what-is-the-wait-command-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is the Wait Command in Linux? (With Examples) | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will explain what the\u00a0wait\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-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=\"2020-03-04T21:19:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/what-is-the-wait-command-in-linux-with-examples.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\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\\\/what-is-the-wait-command-in-linux-with-examples\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"What is the Wait Command in Linux? (With Examples)\",\"datePublished\":\"2020-03-04T21:19:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/\"},\"wordCount\":707,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/what-is-the-wait-command-in-linux-with-examples.jpg\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/\",\"name\":\"What is the Wait Command in Linux? (With Examples) | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/what-is-the-wait-command-in-linux-with-examples.jpg\",\"datePublished\":\"2020-03-04T21:19:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial, we will explain what the\u00a0wait\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/what-is-the-wait-command-in-linux-with-examples.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/what-is-the-wait-command-in-linux-with-examples.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/what-is-the-wait-command-in-linux-with-examples\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is the Wait Command 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":"What is the Wait Command in Linux? (With Examples) | LinuxHostSupport","description":"In this tutorial, we will explain what the\u00a0wait\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a","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\/what-is-the-wait-command-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"What is the Wait Command in Linux? (With Examples) | LinuxHostSupport","og_description":"In this tutorial, we will explain what the\u00a0wait\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a","og_url":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2020-03-04T21:19:00+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/what-is-the-wait-command-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\/what-is-the-wait-command-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"What is the Wait Command in Linux? (With Examples)","datePublished":"2020-03-04T21:19:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/"},"wordCount":707,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/what-is-the-wait-command-in-linux-with-examples.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/","url":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/","name":"What is the Wait Command in Linux? (With Examples) | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/what-is-the-wait-command-in-linux-with-examples.jpg","datePublished":"2020-03-04T21:19:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial, we will explain what the\u00a0wait\u00a0command is, as well as providing a few usage examples so that you can better understand how to use it on a","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/what-is-the-wait-command-in-linux-with-examples.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/what-is-the-wait-command-in-linux-with-examples.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/what-is-the-wait-command-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is the Wait Command 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\/1066","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=1066"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1066\/revisions"}],"predecessor-version":[{"id":1074,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1066\/revisions\/1074"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1069"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1066"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1066"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}