entr: add page (#2613)
This commit is contained in:

committed by
Starbeamrainbowlabs

parent
bb06748ab3
commit
d69bda7c13
19
pages/linux/entr.md
Normal file
19
pages/linux/entr.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# entr
|
||||
|
||||
> Run arbitrary commands when files change.
|
||||
|
||||
- Rebuild with `make` if any files in any subfolders change:
|
||||
|
||||
`{{ag -l}} | entr {{make}}`
|
||||
|
||||
- Rebuild and test with `make` if any `.c` source files in the current directory change:
|
||||
|
||||
`{{ls *.c}} | entr {{'make && make test'}}`
|
||||
|
||||
- Send a `SIGTERM` to any previously spawned ruby subprocesses before executing `ruby main.rb`:
|
||||
|
||||
`{{ls *.rb}} | entr -r {{ruby main.rb}}`
|
||||
|
||||
- Run a command with the changed file (`/_`) as an argument:
|
||||
|
||||
`{{ls *.sql}} | entr {{psql -f}} /_`
|
Reference in New Issue
Block a user