mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 09:50:19 +00:00
title, homepage, tagline
| title | homepage | tagline |
|---|---|---|
| watchexec | https://github.com/watchexec/watchexec | watchexec is a simple, standalone tool that watches a path and runs a command whenever it detects modifications. |
Updating watchexec
webi watchexec@stable
Use the @beta tag for pre-releases.
Cheat Sheet
Watch all JavaScript, CSS and HTML files in the current directory and all
subdirectories for changes, running make when a change is detected:
watchexec --exts js,css,html make
Call make test when any file changes in this directory/subdirectory, except
for everything below target:
watchexec -i target make test
Call ls -la when any file changes in this directory/subdirectory:
watchexec -- ls -la