comparison python/trunner.sh @ 230:88a1e0baef65

Added some tests for IR-code
author Windel Bouwman
date Sat, 13 Jul 2013 19:53:44 +0200
parents 51d5ed1bd503
children 521567d17388
comparison
equal deleted inserted replaced
229:51d5ed1bd503 230:88a1e0baef65
1 #!/usr/bin/bash 1 #!/usr/bin/bash
2 2
3 DIR=./c3 3 DIR=.
4 while :; do 4 while :; do
5 echo "Awaiting changes in $DIR" 5 echo "Awaiting changes in $DIR"
6 inotifywait -e modify ./c3 6 inotifywait -r -e modify $DIR
7 python testc3.py 7 python testc3.py
8 done 8 done
9 9
10 10
11 11