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.
如何使用 DOT 语言将具有多个图形的文件拆分为多个 DOT 文件gvpr?
gvpr
输入(1 个文件):
# single.dot digraph one { a -> b; } digraph two { c -> d; }
输出(每个文件 1 个图表):
# one.dot digraph one { a -> b; } # two.dot digraph two { c -> d; }
BEG_G { fname = sprintf("%s.dot",$G.name); writeG($G, fname); }