Update cheatsheets

This commit is contained in:
ivuorinen
2024-12-08 00:20:29 +00:00
parent 41adea57aa
commit 3113331dbe
9 changed files with 125 additions and 3 deletions

View File

@@ -15,3 +15,7 @@ source: https://github.com/tldr-pages/tldr.git
- Execute a command forever once every second:
`while :; do {{command}}; sleep 1; done`
- Execute a command until it returns a non-zero value:
`while {{command}}; do :; done`