crate graph with dot file using graphviz on linux Posted on 2020-01-17 Edited on 2024-10-14 In linux dotinput.dot 123456graph demo{ 1 -- 2 2 -- 3 3 -- 4 1 -- 4} dot -Tpng input.dot > out.pngdot -Tps input.dot > output.eps view results Reference graphviz.org create-relationship-diagrams-graphviz History 2020/1/17: created.