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:
parent
b2b2fbaa4a
commit
637cb99726
1 changed files with 14 additions and 0 deletions
14
pages/common/usleep.md
Normal file
14
pages/common/usleep.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue