Home Linux 使用graphviz 来查看某些报表和图形(ruby 优化使用 ruby profiler )
Post
Cancel

Linux 使用graphviz 来查看某些报表和图形(ruby 优化使用 ruby profiler )

参考:https://www.graphviz.org/download/

ubuntu安装方式: apt-get install graphvz 

使用方式:

dot ~/Downloads/primes.dot -Tpng -o test.png

dot 是命令

~/Downloads/primes.dot 是 dot源文件

-Tpng 表示生成的图片文件格式

test.png 是目标文件名称。

就可以看到互相嵌套的图形了。

This post is licensed under CC BY 4.0 by the author.