|
|
|
|
|
by teodorlu
1484 days ago
|
|
I love `entr`, but I've recently moved a lot of my `entr` usage to `watchexec`. Entr requires a file list on stdin, watchexec watches the current folder. With entr: find . | entr COMMAND
with watchexec: watchexec COMMAND
Watchexec also gracefully handles new files and file deletions.https://watchexec.github.io/ |
|