I use this on literally 100% of my projects. Normally it's "when my source changes, run tests" or sometimes "when files change, do 'terraform plan' to see what would change".
Using this one command shortens developer feedback loops from a minute to microseconds! And you don't have to think about it! It's magic.
`ls -1 *.py | entr pytest`
`git ls-files | entr terraform plan`
For more, see our friend and national treasure Julia Evans: https://jvns.ca/blog/2020/06/28/entr/
ls | parallel --dry-run --jobs `nproc` 'gzip {}'
(Note you have to remove the --dry-run switch to actually run this, --dry-run only prints out the commands parallel will run, not actually execute them)
yes | annoying_interactive_install_script.sh