view scripts/view_log.sh @ 1534:07b011029024 draft

fix speTaskManagerImpl
author yuhi@cr.ie.u-ryukyu.ac.jp
date Fri, 07 Dec 2012 16:45:51 +0900
parents 9b0908cb7553
children
line wrap: on
line source

#!/bin/bash
if [ $# -ne 1 ]; then
    echo "usage: ./view_log.sh target"
    exit 1
fi
ruby ./log.rb $1 > /tmp/log.dot
dot -Tsvg /tmp/log.dot > /tmp/log.svg; open /tmp/log.svg