mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-14 18:59:46 +00:00
Update cheatsheets
This commit is contained in:
19
tldr/usleep
Normal file
19
tldr/usleep
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# usleep
|
||||
|
||||
> Delay execution for a specific interval in microseconds.
|
||||
> Largely deprecated in favor of `nanosleep`.
|
||||
> See also: `sleep`, `nanosleep`.
|
||||
> More information: <https://manned.org/usleep.1>.
|
||||
|
||||
- Delay in microseconds:
|
||||
|
||||
`usleep {{microseconds}}`
|
||||
|
||||
- Execute a specific command after a 500,000 microseconds delay:
|
||||
|
||||
`usleep 500000 && {{command}}`
|
||||
Reference in New Issue
Block a user