Creating directional graphs with graphviz/dot
Format:
digraph G{
"Node"->"nextNode";
"Node1"->"nextNode1";
}
Command:
dot -Tpng pathToGraphFile > output.png
Result:

Format:
digraph G{
"Node"->"nextNode";
"Node1"->"nextNode1";
}
Command:
dot -Tpng pathToGraphFile > output.png
Result:
