comparison python/trunner2.sh @ 269:5f8c04a8d26b

Towards better modularity
author Windel Bouwman
date Sun, 18 Aug 2013 17:43:18 +0200
parents
children ea93e0a7a31e
comparison
equal deleted inserted replaced
268:5ec7580976d9 269:5f8c04a8d26b
1 #!/usr/bin/bash
2
3 DIR=.
4 while :; do
5 python tcodegen.py
6
7 # Create svg from dot file:
8 dot -Tpdf -o cfg.pdf cfg.gv
9 dot -Tpdf -o ig.pdf ig.gv
10 echo "Awaiting changes in $DIR"
11 inotifywait -r -e modify $DIR
12 done
13
14
15