An open API service indexing awesome lists of open source software.

https://github.com/regisb/conrun

Just a Python script for running bash commands continuously
https://github.com/regisb/conrun

Last synced: over 1 year ago
JSON representation

Just a Python script for running bash commands continuously

Awesome Lists containing this project

README

          

conrun.py
---------

This is a very basic, yet extremely useful script that allows you to continuously run any given command. I use it for test-driven development and continuous building.

Install:

sudo ln -s $(pwd)/conrun.py /usr/bin/conrun

This is how I typically run it, provided I have a Makefile project with a
unittest target that builds all unit tests:

conrun "make unittests && ./unittests"