view python/trunner2.sh @ 281:4496cae24d7f

Improved logview
author Windel Bouwman
date Sat, 02 Nov 2013 11:11:40 +0100
parents 2ccd57b1d78c
children
line wrap: on
line source

#!/usr/bin/bash

DIR=.
while :; do
  python tcodegen.py

  # Create svg from dot file:
  #dot -Tpdf -o ir.pdf ir.gv
  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