1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/sleep.md

13 lines
265 B
Markdown
Raw Normal View History

2016-02-22 22:06:47 +01:00
# sleep
2016-02-23 01:42:26 +02:00
> Delay for a specified amount of time.
> More information: <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/sleep.html>.
2016-02-22 22:06:47 +01:00
- Delay in seconds:
`sleep {{seconds}}`
- Execute a specific command after 20 seconds delay:
2016-02-22 22:06:47 +01:00
`sleep 20 && {{command}}`