1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-01 20:33:40 +02:00

usleep: add page (#16928)

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>
This commit is contained in:
Kristopher 2025-06-24 21:29:13 -07:00 committed by GitHub
parent b2b2fbaa4a
commit 637cb99726
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
pages/common/usleep.md Normal file
View file

@ -0,0 +1,14 @@
# 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}}`