comparison scripts/showTopo.sh @ 185:094d8fa4945e working

add comment
author e095732
date Wed, 06 Mar 2013 16:42:05 +0900
parents
children
comparison
equal deleted inserted replaced
184:4475ba30238f 185:094d8fa4945e
1 #!/bin/bash
2 max=$1
3 child_num=`expr $max - 1`
4 ruby ./topology/treen.rb $max 2 > ./topology/tree.dot
5 dot -Tpng ./topology/tree.dot > ./topology/tree.png
6 open ./topology/tree.png
7