mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-07 14:55:45 +02:00

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec <wiktor@perskawiec.cc> Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
14 lines
351 B
Markdown
14 lines
351 B
Markdown
# 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}}`
|