2025-07-24 22:27:13 -06:00
|
|
|
# usleep
|
|
|
|
|
|
|
|
|
|
> Delay execution for a specific interval in microseconds.
|
|
|
|
|
> Largely deprecated in favor of `nanosleep`.
|
2026-02-18 06:55:01 -07:00
|
|
|
> See also: `sleep`.
|
2025-07-24 22:27:13 -06:00
|
|
|
> 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}}`
|