Files
vim-ale/watchexec
Anurag sati 6efe41512f 1. Removed unwanted git rev in "watchexec/install.sh"
2. Used ```bash instead of $ in "watchexec/README.md"
2020-09-26 14:52:30 -06:00
..
2020-09-26 14:52:30 -06:00
2020-09-26 14:52:30 -06: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