I looking for a solution to visualize a graph on a standard unix text console. Speaking more precisely I need to visualize a graph of dependencies between files from specified set, those dependencies are represented as directed acyclic graph.

link|improve this question
Thats a tall order for a standard text console. especially if you need to limit terminal emulation in any way, e.g. vt100 80 column. – Keltari Aug 28 '11 at 22:09
feedback

1 Answer

I believe GnuPlot can do this

There are also Perl modules that do this sort of thing:

        use Graph::Easy;

        my $graph = Graph::Easy->new();

        $graph->add_edge_once ('Bonn', 'Berlin');

        print $graph->as_ascii( );

        # prints:

        # +------+     +--------+
        # | Bonn | --> | Berlin |
        # +------+     +--------+
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.