mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 15:51:29 +08:00
824 B
824 B
osage
Render an image of a
clusterednetwork graph from agraphvizfile. Layouts:dot,neato,twopi,circo,fdp,sfdp,osage&patchwork. More information: https://graphviz.org/doc/info/command.html.
- Render a
pngimage with a filename based on the input filename and output format (uppercase -O):
osage -T {{png}} -O {{path/to/input.gv}}
- Render a
svgimage with the specified output filename (lowercase -o):
osage -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}
- Render the output in
ps,pdf,svg,fig,png,gif,jpg,json, ordotformat:
osage -T {{format}} -O {{path/to/input.gv}}
- Render a
gifimage usingstdinandstdout:
echo "{{digraph {this -> that} }}" | osage -T {{gif}} > {{path/to/image.gif}}
- Display help:
osage -?