mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 14:32:24 +08:00
9 lines
143 B
Bash
Executable file
9 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
|