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

sccmap — Extract strongly connected components of directed graphs. Graphviz filters: `acyclic`, `bcomps`, `co

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

Problem

How to use the sccmap command: Extract strongly connected components of directed graphs. Graphviz filters: acyclic, bcomps, comps, edgepaint, gvcolor, gvpack, mingle, nop, sccmap, tred, and unflatten. More information: <https://www.graphviz.org/pdf/sccmap.1.pdf>.

Solution

sccmap — Extract strongly connected components of directed graphs. Graphviz filters: acyclic, bcomps, comps, edgepaint, gvcolor, gvpack, mingle, nop, sccmap, tred, and unflatten. More information: <https://www.graphviz.org/pdf/sccmap.1.pdf>.

Extract strongly connected components of one or more directed graphs:
sccmap -S {{path/to/input1.gv path/to/input2.gv ...}} > {{path/to/output.gv}}


Print statistics about a graph, producing no output graph:
sccmap -v -s {{path/to/input1.gv path/to/input2.gv ...}}


Display help:
sccmap -?

Code Snippets

Extract strongly connected components of one or more directed graphs

sccmap -S {{path/to/input1.gv path/to/input2.gv ...}} > {{path/to/output.gv}}

Print statistics about a graph, producing no output graph

sccmap -v -s {{path/to/input1.gv path/to/input2.gv ...}}

Display help

sccmap -?

Context

tldr-pages: common/sccmap

Revisions (0)

No revisions yet.