add some tools to generate graphs and squash images

This commit is contained in:
2016-05-22 18:21:38 +01:00
parent f728b94bcf
commit e7c1ed31ac
11 changed files with 115 additions and 5 deletions

10
bin/dockviz-graphml Executable file
View File

@@ -0,0 +1,10 @@
DIR=`mktemp -d`
cd $DIR
wget -q https://bitbucket.org/dirkbaechle/dottoxml/raw/e285fccba8d51c6d814a83756935f3128972f0ea/src/X11Colors.py
wget -q https://bitbucket.org/dirkbaechle/dottoxml/raw/e285fccba8d51c6d814a83756935f3128972f0ea/src/dottoxml.py
wget -q https://bitbucket.org/dirkbaechle/dottoxml/raw/e285fccba8d51c6d814a83756935f3128972f0ea/src/dot.py
$DOCKER_HOME/bin/dockviz images -d > dockviz.dot
python dottoxml.py dockviz.dot dockviz.graphml
cat dockviz.graphml
cd - > /dev/null
rm -rf $DIR