.profile/notebook/Linux/Tools/entr.md

347 B

tags
automation

entr

Runs a command when files change:

find -type f -name '*.c' | entr make

Use -s to interpret the first argument as a shell command:

find -type f | entr -s "clear && ls"

Services

Use -r to monitor and automatically restart services:

find -name "*.lua" | entr -r lua server.lua