mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-16 12:30:40 +08:00
10 lines
143 B
Bash
10 lines
143 B
Bash
|
#!/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
|