LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Debian (https://www.linuxquestions.org/questions/debian-26/)
-   -   how to use graphviz (https://www.linuxquestions.org/questions/debian-26/how-to-use-graphviz-144470/)

abd_bela 02-10-2004 11:20 AM

how to use graphviz
 
Hi every body
I want to use the Graphviz software (the document in the site is very poor but is for who knows how to start)
, I don't find how to begin.

Please if someone has used it i need a samll example to start.

thank you in advance

best regards,

nikai 02-10-2004 01:46 PM

Hm, which site? There is lots of documentation at http://www.research.att.com/sw/tools/graphviz/refs.html

For an easy example, this is from the "dot user's guide", pp 2-3:

graph1.dot:
Code:

digraph G {
    main -> parse -> execute;
    main -> init;
    main -> cleanup;
    execute -> make_string;
    execute -> printf;
    init -> make_string;
    main -> printf;
    execute -> compare;
}

dot -Tps graph1.dot -o graph1.ps

Have fun :)

abd_bela 02-11-2004 03:41 AM

thank you very much

this command helps me

best regards


All times are GMT -5. The time now is 02:20 AM.