comparison python/trunner.sh @ 229:51d5ed1bd503

Added testrunner
author Windel Bouwman
date Sat, 13 Jul 2013 11:13:01 +0200
parents
children 88a1e0baef65
comparison
equal deleted inserted replaced
228:7f18ed9b6b7e 229:51d5ed1bd503
1 #!/usr/bin/bash
2
3 DIR=./c3
4 while :; do
5 echo "Awaiting changes in $DIR"
6 inotifywait -e modify ./c3
7 python testc3.py
8 done
9
10
11