Created
October 21, 2017 01:19
-
-
Save ashwin/fea490d78814f6e0db38d2eb18b47ed8 to your computer and use it in GitHub Desktop.
Perl script to convert DOT file to ASCII graph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
use Graph::Easy::Parser::Graphviz; | |
my $parser = Graph::Easy::Parser::Graphviz->new(); | |
print $parser->from_file($ARGV[0])->as_ascii(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment