view python/trunner2.sh @ 270:cdc76d183bcc

first register allocator
author Windel Bouwman
date Mon, 19 Aug 2013 21:14:28 +0200
parents 5f8c04a8d26b
children ea93e0a7a31e
line wrap: on
line source

#!/usr/bin/bash

DIR=.
while :; do
  python tcodegen.py

  # Create svg from dot file:
  dot -Tpdf -o cfg.pdf cfg.gv
  dot -Tpdf -o ig.pdf ig.gv
  echo "Awaiting changes in $DIR"
  inotifywait -r -e modify $DIR
done