I want to automatically kick off a build whenever a file changes.
I\'ve used autospec (RSpec) in Ruby and loved that.
How can this be done in bash?
If you've entr installed, then in shell you can use the following syntax:
while true; do find src/ | entr -d make build; done