watchexec: update page (#10621)

pull/23/head
Lena 2023-08-23 08:55:18 +02:00 committed by GitHub
parent 1fca19aa07
commit 9e76252cee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -5,16 +5,16 @@
- Call `ls -la` when any file in the current directory changes:
`watchexec -- {{ls -la}}`
`watchexec {{ls -la}}`
- Run `make` when any JavaScript, CSS and HTML files in the current directory change:
- Run `make` when any JavaScript, CSS and HTML file in the current directory changes:
`watchexec --exts {{js,css,html}} make`
- Run `make` when any file in the `lib` or `src` subdirectories change:
- Run `make` when any file in the `lib` or `src` directory changes:
`watchexec --watch {{lib}} --watch {{src}} {{make}}`
- Call/restart `my_server` when any file in the current directory change, sending `SIGKILL` to stop the child process:
- Call/restart `my_server` when any file in the current directory changes, sending `SIGKILL` to stop the child process:
`watchexec --restart --stop-signal {{SIGKILL}} {{my_server}}`