Update cheatsheets

This commit is contained in:
ivuorinen
2025-06-26 00:20:38 +00:00
parent f4e4b40a39
commit 6771bea4b5
3 changed files with 38 additions and 1 deletions

19
tldr/usleep Normal file
View 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}}`