Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种从命令行在 GUI Graphviz 查看器中打开 DOT 文件(.gz 或 .dot)的方法。所以,如果我运行类似的东西:
$ graphviz my_dot_file.gz
它应该使用所选文件打开 Graphviz 程序。不知何故,对于这个简单的任务,我的谷歌搜索失败了......
我在 Mac OSX Mountain Lion 上
你试过了dot吗?
dot
dot -Tx11 my_dot_file.dot
您可以改为渲染到图像并查看图像:
$ dot -Tpng graph.dot > graph.png $ open graph.png