unflatten(1) - Linux man page
Name
unflatten - adjust directed graphs to improve layout aspect ratioSynopsis
unflatten [-f] [-llen] [-clen ] [ -o outfile ] [ files ]Description
Options
The following options are supported:- -l len
- The minimum length of leaf edges is staggered between 1 and len (a small integer).
- -f
- Enables the staggering of the -l option to fanout nodes whose indegree and outdegree are both 1. This helps with structures such as a -> {w x y z} -> b. This option only works if the -l flag is set.
- -c len
- Form disconnected nodes into chains of up to len nodes.
- -ooutfile
- causes the output to be written to the specified file; by default, output is written to stdout.
Operands
The following operand is supported:- files
- Names of files containing 1 or more graphs in dot format. If no files operand is specified, the standard input will be used.
Authors
Stephen C. North <north@research.att.com>Emden R. Gansner <erg@research.att.com>