mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
da75ce60e6
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
25 lines
403 B
Markdown
25 lines
403 B
Markdown
# gc
|
|
|
|
> Count nodes, edges, connected components, or clusters in Graphviz `.dot` files.
|
|
> More information: <https://graphviz.org/pdf/gc.1.pdf>.
|
|
|
|
- Count nodes and edges in a file:
|
|
|
|
`gc {{path/to/file.dot}}`
|
|
|
|
- Count only [n]odes:
|
|
|
|
`gc -n {{path/to/file.dot}}`
|
|
|
|
- Count only [e]dges:
|
|
|
|
`gc -e {{path/to/file.dot}}`
|
|
|
|
- Count [c]onnected components:
|
|
|
|
`gc -c {{path/to/file.dot}}`
|
|
|
|
- Display help:
|
|
|
|
`gc -?`
|