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
- Host: GitHub
- URL: https://github.com/regisb/conrun
- Owner: regisb
- Created: 2012-12-03T11:53:28.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-08-19T14:05:38.000Z (almost 12 years ago)
- Last Synced: 2025-01-21T19:16:56.700Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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"