annotate python/trunner2.sh @ 274:ea93e0a7a31e

Move docs
author Windel Bouwman
date Wed, 04 Sep 2013 17:35:06 +0200
parents 5f8c04a8d26b
children 9fca39eebe50
rev   line source
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
1 #!/usr/bin/bash
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
2
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
3 DIR=.
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
4 while :; do
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
5 python tcodegen.py
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
6
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
7 # Create svg from dot file:
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 269
diff changeset
8 dot -Tpdf -o ir.pdf ir.gv
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
9 dot -Tpdf -o cfg.pdf cfg.gv
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
10 dot -Tpdf -o ig.pdf ig.gv
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
11 echo "Awaiting changes in $DIR"
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
12 inotifywait -r -e modify $DIR
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
13 done
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
14
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
15
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents:
diff changeset
16