1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-06-27 02:48:42 +08:00
NeoNetwork/makegraph.sh
2020-04-22 20:49:25 +08:00

9 lines
142 B
Bash
Executable file

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