Javatpoint Logo
Javatpoint Logo

Bash Sleep

In this topic, you will understand how to use sleep command by using different bash scripts. Sleep is a command-line utility which allows us to suspend the calling process for a specified time. In other words, Bash sleep command is used to insert a delay or pause the execution for a specified period of time.

When the programmer needs to pause the execution of any command for the specific purpose, then this command can be used with the specific time value. One can set the delay amount by seconds (s), minutes (m), hours (h), and days (d). This command is especially useful when it is used within a bash shell script.

Sleep Command Syntax

Following is the syntax for the sleep command in Bash:

You can use any positive integer or fractional number as time value. A suffix is an optional part. You can apply any of the following as suffix:

  • s - seconds
  • m - minutes
  • h - hours
  • d - days

Note: When there is no suffix, then the number is considered to be in seconds (by default).

When two or more arguments are specified, then the total amount of time will be considered as the time equivalent to the sum of their values.

Following are the few simple examples showing how to use sleep command:

  • Sleep for 9 seconds, use
    sleep 9 or sleep 9s
  • Sleep for 0.5 seconds, use
    sleep 0.5 or sleep 0.5s
  • Sleep for 2 minute and 30 seconds, use
    sleep 2m 30s
  • Sleep for 8 hours
    sleep 8h
  • Sleep for 2 days, 9 hours, 5 minute and 55 seconds, use
    sleep 2d 9h 5m 55s

Bash Scripts Example

We are going to explain the most basic example of sleep command in Bash.

Bash Script

Bash Console View Bash Sleep

Output

Bash Sleep

How the script works

When we run the script, it will print the current time in HH:MM:SS format. Then the echo command will execute and print the message "wait for 9 seconds". Then the sleep command will execute and pause the script for 9 seconds. When the specified time period elapses, the next line of the script will again print the current time. Lastly, the echo command will print the message "Task Completed".

Similarly, you can run sleep command for minutes, hours, and days.

Conclusion

In this topic, we discussed how we could delay or pause bash execution for a specified amount of time.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA