HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gvedit — Simple Graphviz graph editor and viewer. More information: <https://graphviz.org/pdf/gvedit.1.pdf>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
simplegveditcommandgrapheditorandgraphvizcli

Problem

How to use the gvedit command: Simple Graphviz graph editor and viewer. More information: <https://graphviz.org/pdf/gvedit.1.pdf>.

Solution

gvedit — Simple Graphviz graph editor and viewer. More information: <https://graphviz.org/pdf/gvedit.1.pdf>.

Open a Graphviz file in the editor:
gvedit {{path/to/graph.gv}}


[s]cale coordinates from points to inches (useful for layouts generated by Graphviz tools):
gvedit -s {{path/to/graph.gv}}


Enable [v]erbose mode:
gvedit -v {{path/to/graph.gv}}


Display help:
gvedit -?

Code Snippets

Open a Graphviz file in the editor

gvedit {{path/to/graph.gv}}

[s]cale coordinates from points to inches (useful for layouts generated by Graphviz tools)

gvedit -s {{path/to/graph.gv}}

Enable [v]erbose mode

gvedit -v {{path/to/graph.gv}}

Display help

gvedit -?

Context

tldr-pages: common/gvedit

Revisions (0)

No revisions yet.