1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-06-26 22:48:40 +08:00
NeoNetwork/makegraph.sh
2019-10-31 11:09:08 +08:00

10 lines
143 B
Bash
Executable file

#!/bin/sh
set -xe
if which dot 2>&1 > /dev/null ; then
dot -T png nodes.dot -o nodes.png
else
echo 'You need to install graphviz first'
fi