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); }