{"id":2840,"date":"2020-12-23T11:14:56","date_gmt":"2020-12-23T19:14:56","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=2840"},"modified":"2020-12-23T11:14:57","modified_gmt":"2020-12-23T19:14:57","slug":"linux-unix-bash-script-sleep-or-delay-a-specified-amount-of-time","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=2840","title":{"rendered":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time"},"content":{"rendered":"\n<p>Author:\u00a0Vivek Gite<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/www.cyberciti.biz\/media\/new\/category\/old\/terminal.png\" alt=\"\"\/><\/figure>\n\n\n\n<p><a href=\"https:\/\/www.cyberciti.biz\/faq\/category\/bash-shell\/\"><\/a>How do I pause for 5 seconds or 2 minutes in my bash shell script on a Linux or Unix-like systems?<\/p>\n\n\n\n<p>You need to use the sleep command to add delay for a specified amount of time. The syntax is as follows for gnu\/bash sleep command:<br><kbd>sleep NUMBER[SUFFIX]<\/kbd><\/p>\n\n\n\n<p>Where SUFFIX may be:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>s<\/strong>&nbsp;for seconds (the default)<\/li><li><strong>m<\/strong>&nbsp;for minutes.<\/li><li><strong>h<\/strong>&nbsp;for hours.<\/li><li><strong>d<\/strong>&nbsp;for days.<\/li><\/ol>\n\n\n\n<p>Please note that the sleep command in BSD family of operating systems (such as FreeBSD) or macOS\/mac OS X does NOT take any suffix arguments (m\/h\/d). It only takes arguments in seconds. So syntax for&nbsp;<strong>sleep command for Unix<\/strong>&nbsp;like system is:<br><kbd>sleep NUMBER<\/kbd><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Examples<\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\"><em>### To sleep for 5 days, use: ##<\/em>\n<strong>sleep<\/strong> 5d\n&nbsp;\n<em>#####################################################################<\/em>\n<em># BSD\/Unix\/macOS implementations of sleep command have required that number <\/em>\n<em># be an integer, and only accepted a single argument without a suffix. <\/em>\n<em># However, GNU\/Linux version of sleep command accepts arbitrary floating <\/em>\n<em># point numbers.<\/em>\n<em>#####################################################################<\/em>\n&nbsp;\n<em>### To sleep for 1.5 seconds: ##<\/em>\n<strong>sleep<\/strong> 1.5\n&nbsp;\n<em>## To sleep for .5 seconds: ###<\/em>\n<strong>sleep<\/strong> .5<\/pre>\n\n\n\n<p>The most common usage are as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><em>## run commmand1, sleep for 1 minute and finally run command2 ## <\/em>\ncommand1 <strong>&amp;&amp;<\/strong> <strong>sleep<\/strong> 1m <strong>&amp;&amp;<\/strong> command2\n&nbsp;\n<em>## sleep in bash for loop ##<\/em>\n<strong>for<\/strong> i <strong>in<\/strong> <strong>{<\/strong>1..10<strong>}<\/strong>\n<strong>do<\/strong>\n  do_something_here\n  <strong>sleep<\/strong> 5s\n<strong>done<\/strong>\n&nbsp;\n<em>## run while loop to display date and hostname on screen ##<\/em>\n<strong>while<\/strong> <strong>[<\/strong> : <strong>]<\/strong>\n<strong>do<\/strong>\n    <strong>clear<\/strong>\n    tput cup 5 5\n    <strong>date<\/strong>\n    tput cup 6 5\n    <strong>echo<\/strong> \"Hostname : $(hostname)\"\n    <strong>sleep<\/strong> 1\n<strong>done<\/strong><\/pre>\n\n\n\n<p>Sample outputs from last while loop:<br><a href=\"https:\/\/www.cyberciti.biz\/media\/new\/faq\/2011\/02\/sleep-command.gif\"><\/a><\/p>\n\n\n\n<p id=\"caption-attachment-79643\">Animated gif.01: Sleep command in action<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">sleep Command Bash Script Example<\/h3>\n\n\n\n<p>Here is a simple example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><em>#!\/bin\/bash<\/em>\n<strong>echo<\/strong> \"Hi, I'm sleeping for 5 seconds...\"\n<strong>sleep<\/strong> 5  \n<strong>echo<\/strong> \"all Done.\"<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">...\n...\nlockdir=<strong>`<\/strong><strong>echo<\/strong> \"$cofile\" <strong>|<\/strong> <strong>sed<\/strong> -e 's|[\/\\\\:.-]|_|g'<strong>`<\/strong>.d\n<strong>while<\/strong> <strong>true<\/strong>; <strong>do<\/strong>\n  <strong>if<\/strong> <strong>mkdir<\/strong> \"$lockdir\" <strong>&gt;\/<\/strong>dev<strong>\/<\/strong>null 2<strong>&gt;&amp;<\/strong>1; <strong>then<\/strong>\n    <strong>break<\/strong>\n  <strong>fi<\/strong>\n  <strong>sleep<\/strong> 1\n<strong>done<\/strong>\n....\n..\n....<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">How can I pause my bash shell script for 5 seconds before continuing?<\/h3>\n\n\n\n<p>Use the read command:<br><code>read -p \"text\" -t 5<br>read -p \"Waiting five secs for Cloudflare to clear cache....\" -t 5<br>echo \"Generating pdf file now ....\"<\/code><br>Sample outputs:<br><code>Waiting five secs for Cloudflare to clear cache....<br>Generating pdf file now ....<\/code><br>Where,<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><kbd>-p \"text\"<\/kbd>&nbsp;: Show the text without a trailing newline before time out.<\/li><li><kbd>-t N<\/kbd>&nbsp;: Set time out to 5 seconds.<\/li><\/ul>\n\n\n\n<p>For more info see bash command by typing the following man command:<br><code>$ man bash<br>$ man sleep<br>$ help read<\/code><\/p>\n\n\n\n<p>Ref: https:\/\/www.cyberciti.biz\/faq\/linux-unix-sleep-bash-scripting\/<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Author:\u00a0Vivek Gite How do I pause for 5 seconds or 2 minutes in my bash shell script on a Linux or Unix-like systems? You need to use the sleep command to add delay for a specified amount of time. The syntax is as follows for gnu\/bash sleep command:sleep NUMBER[SUFFIX] Where SUFFIX may be: s&nbsp;for seconds <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=2840\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[262,5],"tags":[],"class_list":["post-2840","post","type-post","status-publish","format-standard","hentry","category-centos","category-linux"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Author: Vivek Gite How do I pause for 5 seconds or 2 minutes in my bash shell script on a Linux or Unix-like systems? You need to use the sleep command to add delay for a specified amount of time. The syntax is as follows for gnu\/bash sleep command:sleep NUMBER[SUFFIX] Where SUFFIX may be: s for seconds\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"centos,linux family\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=2840\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#article\",\"name\":\"Linux \\\/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time | Summa Lai\",\"headline\":\"Linux \\\/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.cyberciti.biz\\\/media\\\/new\\\/category\\\/old\\\/terminal.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840\\\/#articleImage\"},\"datePublished\":\"2020-12-23T11:14:56-08:00\",\"dateModified\":\"2020-12-23T11:14:57-08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#webpage\"},\"articleSection\":\"CentOS, Linux Family\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5#listItem\",\"name\":\"Linux Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5#listItem\",\"position\":2,\"name\":\"Linux Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=262#listItem\",\"name\":\"CentOS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=262#listItem\",\"position\":3,\"name\":\"CentOS\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=262\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#listItem\",\"name\":\"Linux \\\/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5#listItem\",\"name\":\"Linux Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#listItem\",\"position\":4,\"name\":\"Linux \\\/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=262#listItem\",\"name\":\"CentOS\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840\",\"name\":\"Linux \\\/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time | Summa Lai\",\"description\":\"Author: Vivek Gite How do I pause for 5 seconds or 2 minutes in my bash shell script on a Linux or Unix-like systems? You need to use the sleep command to add delay for a specified amount of time. The syntax is as follows for gnu\\\/bash sleep command:sleep NUMBER[SUFFIX] Where SUFFIX may be: s for seconds\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2840#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2020-12-23T11:14:56-08:00\",\"dateModified\":\"2020-12-23T11:14:57-08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time | Summa Lai","description":"Author: Vivek Gite How do I pause for 5 seconds or 2 minutes in my bash shell script on a Linux or Unix-like systems? You need to use the sleep command to add delay for a specified amount of time. The syntax is as follows for gnu\/bash sleep command:sleep NUMBER[SUFFIX] Where SUFFIX may be: s for seconds","canonical_url":"https:\/\/SUMMALAI.COM\/?p=2840","robots":"max-image-preview:large","keywords":"centos,linux family","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=2840#article","name":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time | Summa Lai","headline":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/www.cyberciti.biz\/media\/new\/category\/old\/terminal.png","@id":"https:\/\/SUMMALAI.COM\/?p=2840\/#articleImage"},"datePublished":"2020-12-23T11:14:56-08:00","dateModified":"2020-12-23T11:14:57-08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=2840#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=2840#webpage"},"articleSection":"CentOS, Linux Family"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=2840#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=5#listItem","name":"Linux Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=5#listItem","position":2,"name":"Linux Family","item":"https:\/\/SUMMALAI.COM\/?cat=5","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=262#listItem","name":"CentOS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=262#listItem","position":3,"name":"CentOS","item":"https:\/\/SUMMALAI.COM\/?cat=262","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=2840#listItem","name":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=5#listItem","name":"Linux Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=2840#listItem","position":4,"name":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=262#listItem","name":"CentOS"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=2840#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=2840#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=2840#webpage","url":"https:\/\/SUMMALAI.COM\/?p=2840","name":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time | Summa Lai","description":"Author: Vivek Gite How do I pause for 5 seconds or 2 minutes in my bash shell script on a Linux or Unix-like systems? You need to use the sleep command to add delay for a specified amount of time. The syntax is as follows for gnu\/bash sleep command:sleep NUMBER[SUFFIX] Where SUFFIX may be: s for seconds","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=2840#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2020-12-23T11:14:56-08:00","dateModified":"2020-12-23T11:14:57-08:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"2840","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"none","schema_type_options":"{\"webPage\":{\"webPageType\":\"WebPage\"},\"article\":{\"articleType\":\"BlogPosting\"},\"book\":[],\"course\":[],\"event\":[],\"jobPosting\":[],\"music\":[],\"person\":[],\"product\":[],\"recipe\":[],\"restaurant\":[],\"service\":[],\"software\":[],\"video\":[]}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":{"businessInfo":{"name":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"line1":"","line2":"","zip":"","city":"","state":"","country":""},"contact":{"email":"","phone":"","fax":""},"ids":{"vatID":"","taxID":"","chamberID":""},"payment":{"priceIndication":"","currenciesAccepted":"","methodsAccepted":""},"areaServed":""},"openingHours":{"show":false,"closedLabel":"","open24h":false,"open24hLabel":"","open247":false,"use24hFormat":false,"twoSets":false,"timezone":"","hours":[]}},"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-23 19:11:36","updated":"2024-01-12 04:50:11","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=5\" title=\"Linux Family\">Linux Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=262\" title=\"CentOS\">CentOS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tLinux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Linux Family","link":"https:\/\/SUMMALAI.COM\/?cat=5"},{"label":"CentOS","link":"https:\/\/SUMMALAI.COM\/?cat=262"},{"label":"Linux \/ UNIX: Bash Script Sleep or Delay a Specified Amount of Time","link":"https:\/\/SUMMALAI.COM\/?p=2840"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/2840","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2840"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/2840\/revisions"}],"predecessor-version":[{"id":2841,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/2840\/revisions\/2841"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2840"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2840"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2840"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}