Update cheatsheets

This commit is contained in:
ivuorinen
2025-05-10 00:19:02 +00:00
parent 9f85bd373f
commit c39b4c5f19
53 changed files with 152 additions and 86 deletions

View File

@@ -23,3 +23,7 @@ source: https://github.com/tldr-pages/tldr.git
- Call/restart `my_server` when any file in the current directory changes, sending `SIGKILL` to stop the child process:
`watchexec {{[-r|--restart]}} --stop-signal {{SIGKILL}} {{my_server}}`
- Restart the execution of a command when any Java source file in the current directory changes, sending `SIGKILL` and only checking for updates every `n`ms:
`watchexec {{[-r|--restart]}} --stop-signal {{SIGKILL}} --poll {{10000}} {{[-e|--exts]}} {{java}} {{command}}`