tldr/pages/common/sleep.md

13 lines
265 B
Markdown
Raw Normal View History

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